package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "meshviewer",
  3. "scripts": {
  4. "test": "node -e \"require('grunt').cli()\" '' clean lint"
  5. },
  6. "devDependencies": {
  7. "grunt": "^0.4.5",
  8. "grunt-check-dependencies": "^0.6.0",
  9. "grunt-contrib-clean": "^0.6.0",
  10. "grunt-contrib-connect": "^0.8.0",
  11. "grunt-contrib-copy": "^0.5.0",
  12. "grunt-contrib-cssmin": "^0.12.2",
  13. "grunt-contrib-requirejs": "^0.4.4",
  14. "grunt-contrib-sass": "^0.9.2",
  15. "grunt-contrib-uglify": "^0.5.1",
  16. "grunt-contrib-watch": "^0.6.1",
  17. "grunt-eslint": "^10.0.0",
  18. "grunt-bower-install-simple": "^1.1.2",
  19. "grunt-git-describe": "^2.3.2"
  20. },
  21. "eslintConfig": {
  22. "env": {
  23. "browser": true,
  24. "amd": true,
  25. "es6": true,
  26. "node": true
  27. },
  28. "globals": {
  29. "attributeEntry": false,
  30. "dictGet": false,
  31. "getJSON": false,
  32. "has_location": false,
  33. "limit": false,
  34. "localStorageTest": false,
  35. "offline": false,
  36. "one": false,
  37. "online": false,
  38. "showDistance": false,
  39. "showTq": false,
  40. "sortByKey": false,
  41. "subtract": false,
  42. "sum": false,
  43. "trueDefault": false
  44. }
  45. }
  46. }