package.json 4.3 KB

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