package.json 4.3 KB

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