package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "acorn-node",
  3. "description": "the acorn javascript parser, preloaded with plugins for syntax parity with recent node versions",
  4. "version": "1.8.2",
  5. "author": "Renée Kooi <renee@kooi.me>",
  6. "bugs": {
  7. "url": "https://github.com/browserify/acorn-node/issues"
  8. },
  9. "dependencies": {
  10. "acorn": "^7.0.0",
  11. "acorn-walk": "^7.0.0",
  12. "xtend": "^4.0.2"
  13. },
  14. "devDependencies": {
  15. "acorn-bigint": "^0.4.0",
  16. "acorn-class-fields": "^0.3.1",
  17. "acorn-dynamic-import": "^4.0.0",
  18. "acorn-export-ns-from": "^0.1.0",
  19. "acorn-import-meta": "^0.3.0",
  20. "acorn-numeric-separator": "^0.3.0",
  21. "acorn-private-class-elements": "^0.1.1",
  22. "acorn-static-class-features": "^0.2.0",
  23. "buble": "^0.19.8",
  24. "mkdirp": "^0.5.1",
  25. "standard": "^13.1.0",
  26. "tape": "^4.11.0"
  27. },
  28. "homepage": "https://github.com/browserify/acorn-node",
  29. "keywords": [
  30. "acorn",
  31. "browserify",
  32. "javascript",
  33. "parser"
  34. ],
  35. "license": "Apache-2.0",
  36. "main": "index.js",
  37. "repository": {
  38. "type": "git",
  39. "url": "https://github.com/browserify/acorn-node.git"
  40. },
  41. "scripts": {
  42. "test": "standard && node test/index.js",
  43. "prepublishOnly": "npm run build",
  44. "build": "node build.js"
  45. },
  46. "standard": {
  47. "ignore": [
  48. "lib/*/*.js"
  49. ]
  50. }
  51. }