Bez popisu

package.json 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "jshint",
  3. "version": "2.5.11",
  4. "homepage": "http://jshint.com/",
  5. "description": "Static analysis tool for JavaScript",
  6. "author": {
  7. "name": "Anton Kovalyov",
  8. "email": "anton@kovalyov.net",
  9. "url": "http://anton.kovalyov.net/"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/jshint/jshint.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/jshint/jshint/issues"
  17. },
  18. "bin": {
  19. "jshint": "./bin/jshint"
  20. },
  21. "scripts": {
  22. "build": "node bin/build",
  23. "coverage": "istanbul -- cover ./node_modules/.bin/nodeunit tests/unit",
  24. "data": "node scripts/generate-identifier-data",
  25. "pretest": "jshint src",
  26. "test": "nodeunit tests tests/regression tests/unit"
  27. },
  28. "main": "./src/jshint.js",
  29. "dependencies": {
  30. "cli": "0.6.x",
  31. "console-browserify": "1.1.x",
  32. "exit": "0.1.x",
  33. "htmlparser2": "3.8.x",
  34. "minimatch": "1.0.x",
  35. "shelljs": "0.3.x",
  36. "strip-json-comments": "1.0.x",
  37. "underscore": "1.6.x"
  38. },
  39. "devDependencies": {
  40. "browserify": "6.x",
  41. "coveralls": "2.11.x",
  42. "istanbul": "0.3.x",
  43. "jshint": "2.5.x",
  44. "mock-stdin": "0.3.x",
  45. "nodeunit": "0.9.x",
  46. "regenerate": "1.0.x",
  47. "sinon": "1.11.x",
  48. "unicode-6.3.0": "0.1.x"
  49. },
  50. "licenses": [
  51. {
  52. "type": "MIT",
  53. "url": "https://github.com/jshint/jshint/blob/master/LICENSE"
  54. }
  55. ],
  56. "preferGlobal": true,
  57. "files": [
  58. "bin",
  59. "data",
  60. "dist",
  61. "src"
  62. ]
  63. }