package.json 963 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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-uglify": "^0.5.1",
  15. "grunt-contrib-watch": "^0.6.1",
  16. "grunt-eslint": "^10.0.0"
  17. },
  18. "eslintConfig": {
  19. "env": {
  20. "browser": true,
  21. "amd": true,
  22. "es6": true,
  23. "node": true
  24. },
  25. "globals": {
  26. "getJSON": false,
  27. "has_location": false,
  28. "limit": false,
  29. "linkId": false,
  30. "offline": false,
  31. "one": false,
  32. "online": false,
  33. "showDistance": false,
  34. "showTq": false,
  35. "sortByKey": false,
  36. "subtract": false,
  37. "sum": false,
  38. "trueDefault": false
  39. }
  40. }
  41. }