package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. },
  19. "eslintConfig": {
  20. "env": {
  21. "browser": true,
  22. "amd": true,
  23. "es6": true,
  24. "node": true
  25. },
  26. "globals": {
  27. "attributeEntry": false,
  28. "dictGet": false,
  29. "getJSON": false,
  30. "has_location": false,
  31. "limit": false,
  32. "linkId": false,
  33. "offline": false,
  34. "one": false,
  35. "online": false,
  36. "showDistance": false,
  37. "showTq": false,
  38. "sortByKey": false,
  39. "subtract": false,
  40. "sum": false,
  41. "trueDefault": false
  42. }
  43. }
  44. }