package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "escodegen",
  3. "description": "ECMAScript code generator",
  4. "homepage": "http://github.com/estools/escodegen",
  5. "main": "escodegen.js",
  6. "bin": {
  7. "esgenerate": "./bin/esgenerate.js",
  8. "escodegen": "./bin/escodegen.js"
  9. },
  10. "files": [
  11. "LICENSE.BSD",
  12. "README.md",
  13. "bin",
  14. "escodegen.js",
  15. "package.json"
  16. ],
  17. "version": "2.1.0",
  18. "engines": {
  19. "node": ">=6.0"
  20. },
  21. "maintainers": [
  22. {
  23. "name": "Yusuke Suzuki",
  24. "email": "utatane.tea@gmail.com",
  25. "web": "http://github.com/Constellation"
  26. }
  27. ],
  28. "repository": {
  29. "type": "git",
  30. "url": "http://github.com/estools/escodegen.git"
  31. },
  32. "dependencies": {
  33. "estraverse": "^5.2.0",
  34. "esutils": "^2.0.2",
  35. "esprima": "^4.0.1"
  36. },
  37. "optionalDependencies": {
  38. "source-map": "~0.6.1"
  39. },
  40. "devDependencies": {
  41. "acorn": "^8.0.4",
  42. "bluebird": "^3.4.7",
  43. "bower-registry-client": "^1.0.0",
  44. "chai": "^4.2.0",
  45. "chai-exclude": "^2.0.2",
  46. "commonjs-everywhere": "^0.9.7",
  47. "gulp": "^4.0.2",
  48. "gulp-eslint": "^6.0.0",
  49. "gulp-mocha": "^7.0.2",
  50. "minimist": "^1.2.5",
  51. "optionator": "^0.9.1",
  52. "semver": "^7.3.4"
  53. },
  54. "license": "BSD-2-Clause",
  55. "scripts": {
  56. "test": "gulp travis",
  57. "unit-test": "gulp test",
  58. "lint": "gulp lint",
  59. "release": "node tools/release.js",
  60. "build-min": "./node_modules/.bin/cjsify -ma path: tools/entry-point.js > escodegen.browser.min.js",
  61. "build": "./node_modules/.bin/cjsify -a path: tools/entry-point.js > escodegen.browser.js"
  62. }
  63. }