package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "acorn",
  3. "description": "ECMAScript parser",
  4. "homepage": "https://github.com/ternjs/acorn",
  5. "main": "dist/acorn.js",
  6. "jsnext:main": "dist/acorn.es.js",
  7. "version": "4.0.13",
  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. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/ternjs/acorn.git"
  26. },
  27. "license": "MIT",
  28. "scripts": {
  29. "prepublish": "npm test",
  30. "test": "node test/run.js",
  31. "pretest": "npm run build",
  32. "build": "npm run build:main && npm run build:walk && npm run build:loose && npm run build:bin",
  33. "build:main": "rollup -c rollup/config.main.js",
  34. "build:walk": "rollup -c rollup/config.walk.js",
  35. "build:loose": "rollup -c rollup/config.loose.js",
  36. "build:bin": "rollup -c rollup/config.bin.js"
  37. },
  38. "bin": {
  39. "acorn": "./bin/acorn"
  40. },
  41. "devDependencies": {
  42. "rollup": "^0.34.1",
  43. "rollup-plugin-buble": "^0.11.0",
  44. "unicode-9.0.0": "^0.7.0"
  45. }
  46. }