You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
832 B

2 years ago
  1. {
  2. "name": "acorn",
  3. "description": "ECMAScript parser",
  4. "homepage": "https://github.com/acornjs/acorn",
  5. "main": "dist/acorn.js",
  6. "types": "dist/acorn.d.ts",
  7. "module": "dist/acorn.mjs",
  8. "version": "7.4.1",
  9. "engines": {"node": ">=0.4.0"},
  10. "maintainers": [
  11. {
  12. "name": "Marijn Haverbeke",
  13. "email": "marijnh@gmail.com",
  14. "web": "https://marijnhaverbeke.nl"
  15. },
  16. {
  17. "name": "Ingvar Stepanyan",
  18. "email": "me@rreverser.com",
  19. "web": "https://rreverser.com/"
  20. },
  21. {
  22. "name": "Adrian Heine",
  23. "web": "http://adrianheine.de"
  24. }
  25. ],
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/acornjs/acorn.git"
  29. },
  30. "license": "MIT",
  31. "scripts": {
  32. "prepare": "cd ..; npm run build:main && npm run build:bin"
  33. },
  34. "bin": {"acorn": "./bin/acorn"}
  35. }