7d184644bc85ba4c57a25813386e7d9905cca2cadc633f225abce2017adbdc3b94cdb7b5ae607505435e1f8ab29542daf47c15c20f01b94ed36f65d98be3df 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "esprima",
  3. "description": "ECMAScript parsing infrastructure for multipurpose analysis",
  4. "homepage": "http://esprima.org",
  5. "main": "esprima.js",
  6. "bin": {
  7. "esparse": "./bin/esparse.js",
  8. "esvalidate": "./bin/esvalidate.js"
  9. },
  10. "version": "2.7.3",
  11. "files": [
  12. "bin",
  13. "unit-tests.js",
  14. "esprima.js"
  15. ],
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "author": {
  20. "name": "Ariya Hidayat",
  21. "email": "ariya.hidayat@gmail.com"
  22. },
  23. "maintainers": [
  24. {
  25. "name": "Ariya Hidayat",
  26. "email": "ariya.hidayat@gmail.com",
  27. "web": "http://ariya.ofilabs.com"
  28. }
  29. ],
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/jquery/esprima.git"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/jquery/esprima/issues"
  36. },
  37. "license": "BSD-2-Clause",
  38. "devDependencies": {
  39. "codecov.io": "~0.1.6",
  40. "escomplex-js": "1.2.0",
  41. "eslint": "~1.7.2",
  42. "everything.js": "~1.0.3",
  43. "glob": "^5.0.15",
  44. "istanbul": "~0.4.0",
  45. "jscs": "~2.3.5",
  46. "json-diff": "~0.3.1",
  47. "karma": "^0.13.11",
  48. "karma-chrome-launcher": "^0.2.1",
  49. "karma-detect-browsers": "^2.0.2",
  50. "karma-firefox-launcher": "^0.1.6",
  51. "karma-ie-launcher": "^0.2.0",
  52. "karma-mocha": "^0.2.0",
  53. "karma-safari-launcher": "^0.1.1",
  54. "karma-sauce-launcher": "^0.2.14",
  55. "lodash": "^3.10.0",
  56. "mocha": "^2.3.3",
  57. "node-tick-processor": "~0.0.2",
  58. "regenerate": "~1.2.1",
  59. "temp": "~0.8.3",
  60. "unicode-7.0.0": "~0.1.5"
  61. },
  62. "keywords": [
  63. "ast",
  64. "ecmascript",
  65. "javascript",
  66. "parser",
  67. "syntax"
  68. ],
  69. "scripts": {
  70. "check-version": "node test/check-version.js",
  71. "jscs": "jscs -p crockford esprima.js && jscs -p crockford test/*.js",
  72. "eslint": "node node_modules/eslint/bin/eslint.js -c .lintrc esprima.js",
  73. "complexity": "node test/check-complexity.js",
  74. "static-analysis": "npm run check-version && npm run jscs && npm run eslint && npm run complexity",
  75. "unit-tests": "node test/unit-tests.js",
  76. "grammar-tests": "node test/grammar-tests.js",
  77. "regression-tests": "node test/regression-tests.js",
  78. "all-tests": "npm run generate-fixtures && npm run unit-tests && npm run grammar-tests && npm run regression-tests",
  79. "generate-fixtures": "node tools/generate-fixtures.js",
  80. "browser-tests": "npm run generate-fixtures && cd test && karma start --single-run",
  81. "saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js",
  82. "saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js",
  83. "saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js",
  84. "analyze-coverage": "istanbul cover test/unit-tests.js",
  85. "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100",
  86. "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage",
  87. "test": "npm run all-tests && npm run static-analysis && npm run dynamic-analysis",
  88. "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor",
  89. "benchmark": "node test/benchmarks.js",
  90. "benchmark-quick": "node test/benchmarks.js quick",
  91. "codecov" : "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml",
  92. "downstream": "node test/downstream.js",
  93. "travis": "npm test",
  94. "circleci": "npm test && npm run codecov && npm run downstream",
  95. "appveyor": "npm run all-tests && npm run browser-tests && npm run dynamic-analysis",
  96. "droneio": "npm test && npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari",
  97. "generate-regex": "node tools/generate-identifier-regex.js"
  98. }
  99. }