package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "acorn",
  3. "description": "ECMAScript parser",
  4. "homepage": "https://github.com/acornjs/acorn",
  5. "main": "dist/acorn.js",
  6. "module": "dist/acorn.es.js",
  7. "version": "5.7.4",
  8. "engines": {
  9. "node": ">=0.4.0"
  10. },
  11. "maintainers": [
  12. {
  13. "name": "Marijn Haverbeke",
  14. "email": "marijnh@gmail.com",
  15. "web": "http://marijnhaverbeke.nl"
  16. },
  17. {
  18. "name": "Ingvar Stepanyan",
  19. "email": "me@rreverser.com",
  20. "web": "http://rreverser.com/"
  21. },
  22. {
  23. "name": "Adrian Heine",
  24. "email": "http://adrianheine.de"
  25. }
  26. ],
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/acornjs/acorn.git"
  30. },
  31. "license": "MIT",
  32. "scripts": {
  33. "prepare": "npm run build && node test/run.js && node test/lint.js",
  34. "test": "node test/run.js && node test/lint.js",
  35. "pretest": "npm run build:main && npm run build:loose",
  36. "test:test262": "node bin/run_test262.js",
  37. "build": "npm run build:main && npm run build:walk && npm run build:loose && npm run build:bin",
  38. "build:main": "rollup -c rollup/config.main.js",
  39. "build:walk": "rollup -c rollup/config.walk.js",
  40. "build:loose": "rollup -c rollup/config.loose.js && rollup -c rollup/config.loose_es.js",
  41. "build:bin": "rollup -c rollup/config.bin.js",
  42. "lint": "eslint src/"
  43. },
  44. "bin": {
  45. "acorn": "./bin/acorn"
  46. },
  47. "devDependencies": {
  48. "eslint": "^4.10.0",
  49. "eslint-config-standard": "^10.2.1",
  50. "eslint-plugin-import": "^2.2.0",
  51. "eslint-plugin-node": "^5.2.1",
  52. "eslint-plugin-promise": "^3.5.0",
  53. "eslint-plugin-standard": "^3.0.1",
  54. "rollup": "^0.45.0",
  55. "rollup-plugin-buble": "^0.16.0",
  56. "test262": "git+https://github.com/tc39/test262.git#3bfad28cc302fd4455badcfcbca7c5bb7ce41a72",
  57. "test262-parser-runner": "^0.4.0",
  58. "unicode-11.0.0": "^0.7.7"
  59. }
  60. }