package.json 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. {
  2. "_args": [
  3. [
  4. "esprima@3.1.3",
  5. "/Users/lihai/jolijoli/pad_spa"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "esprima@3.1.3",
  10. "_id": "esprima@3.1.3",
  11. "_inBundle": false,
  12. "_integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=",
  13. "_location": "/esprima",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "esprima@3.1.3",
  19. "name": "esprima",
  20. "escapedName": "esprima",
  21. "rawSpec": "3.1.3",
  22. "saveSpec": null,
  23. "fetchSpec": "3.1.3"
  24. },
  25. "_requiredBy": [
  26. "/escodegen"
  27. ],
  28. "_resolved": "https://registry.npm.taobao.org/esprima/download/esprima-3.1.3.tgz",
  29. "_spec": "3.1.3",
  30. "_where": "/Users/lihai/jolijoli/pad_spa",
  31. "author": {
  32. "name": "Ariya Hidayat",
  33. "email": "ariya.hidayat@gmail.com"
  34. },
  35. "bin": {
  36. "esparse": "bin/esparse.js",
  37. "esvalidate": "bin/esvalidate.js"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/jquery/esprima/issues"
  41. },
  42. "description": "ECMAScript parsing infrastructure for multipurpose analysis",
  43. "devDependencies": {
  44. "codecov.io": "~0.1.6",
  45. "escomplex-js": "1.2.0",
  46. "everything.js": "~1.0.3",
  47. "glob": "~7.1.0",
  48. "istanbul": "~0.4.0",
  49. "json-diff": "~0.3.1",
  50. "karma": "~1.3.0",
  51. "karma-chrome-launcher": "~2.0.0",
  52. "karma-detect-browsers": "~2.1.0",
  53. "karma-firefox-launcher": "~1.0.0",
  54. "karma-ie-launcher": "~1.0.0",
  55. "karma-mocha": "~1.2.0",
  56. "karma-safari-launcher": "~1.0.0",
  57. "karma-sauce-launcher": "~1.0.0",
  58. "lodash": "~3.10.1",
  59. "mocha": "~3.1.0",
  60. "node-tick-processor": "~0.0.2",
  61. "regenerate": "~1.3.1",
  62. "temp": "~0.8.3",
  63. "tslint": "~3.15.1",
  64. "typescript": "~1.8.10",
  65. "typescript-formatter": "~2.3.0",
  66. "unicode-8.0.0": "~0.7.0",
  67. "webpack": "~1.13.2"
  68. },
  69. "engines": {
  70. "node": ">=4"
  71. },
  72. "files": [
  73. "bin",
  74. "dist/esprima.js"
  75. ],
  76. "homepage": "http://esprima.org",
  77. "keywords": [
  78. "ast",
  79. "ecmascript",
  80. "esprima",
  81. "javascript",
  82. "parser",
  83. "syntax"
  84. ],
  85. "license": "BSD-2-Clause",
  86. "main": "dist/esprima.js",
  87. "maintainers": [
  88. {
  89. "name": "Ariya Hidayat",
  90. "email": "ariya.hidayat@gmail.com",
  91. "url": "http://ariya.ofilabs.com"
  92. }
  93. ],
  94. "name": "esprima",
  95. "repository": {
  96. "type": "git",
  97. "url": "git+https://github.com/jquery/esprima.git"
  98. },
  99. "scripts": {
  100. "all-tests": "npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests",
  101. "analyze-coverage": "istanbul cover test/unit-tests.js",
  102. "api-tests": "mocha -R dot test/api-tests.js",
  103. "appveyor": "npm run compile && npm run all-tests && npm run browser-tests",
  104. "benchmark": "npm run benchmark-parser && npm run benchmark-tokenizer",
  105. "benchmark-parser": "node -expose_gc test/benchmark-parser.js",
  106. "benchmark-tokenizer": "node --expose_gc test/benchmark-tokenizer.js",
  107. "browser-tests": "npm run compile && npm run generate-fixtures && cd test && karma start --single-run",
  108. "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100",
  109. "check-version": "node test/check-version.js",
  110. "circleci": "npm test && npm run codecov && npm run downstream",
  111. "code-style": "tsfmt --verify src/*.ts && tsfmt --verify test/*.js",
  112. "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml",
  113. "compile": "tsc -p src/ && webpack && node tools/fixupbundle.js",
  114. "complexity": "node test/check-complexity.js",
  115. "downstream": "node test/downstream.js",
  116. "droneio": "npm run compile && npm run all-tests && npm run saucelabs",
  117. "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage",
  118. "format-code": "tsfmt -r src/*.ts && tsfmt -r test/*.js",
  119. "generate-fixtures": "node tools/generate-fixtures.js",
  120. "generate-regex": "node tools/generate-identifier-regex.js",
  121. "generate-xhtml-entities": "node tools/generate-xhtml-entities.js",
  122. "grammar-tests": "node test/grammar-tests.js",
  123. "hostile-env-tests": "node test/hostile-environment-tests.js",
  124. "prepublish": "npm run compile",
  125. "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor",
  126. "regression-tests": "node test/regression-tests.js",
  127. "saucelabs": "npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari",
  128. "saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js",
  129. "saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js",
  130. "saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js",
  131. "static-analysis": "npm run check-version && npm run tslint && npm run code-style && npm run complexity",
  132. "test": "npm run compile && npm run all-tests && npm run static-analysis && npm run dynamic-analysis",
  133. "travis": "npm test",
  134. "tslint": "tslint src/*.ts",
  135. "unit-tests": "node test/unit-tests.js"
  136. },
  137. "version": "3.1.3"
  138. }