UNPKG

1.06 kBJSONView Raw
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 "exports": {
9 ".": [
10 {
11 "import": "./dist/acorn.mjs",
12 "require": "./dist/acorn.js",
13 "default": "./dist/acorn.js"
14 },
15 "./dist/acorn.js"
16 ],
17 "./package.json": "./package.json"
18 },
19 "version": "8.2.0",
20 "engines": {"node": ">=0.4.0"},
21 "maintainers": [
22 {
23 "name": "Marijn Haverbeke",
24 "email": "marijnh@gmail.com",
25 "web": "https://marijnhaverbeke.nl"
26 },
27 {
28 "name": "Ingvar Stepanyan",
29 "email": "me@rreverser.com",
30 "web": "https://rreverser.com/"
31 },
32 {
33 "name": "Adrian Heine",
34 "web": "http://adrianheine.de"
35 }
36 ],
37 "repository": {
38 "type": "git",
39 "url": "https://github.com/acornjs/acorn.git"
40 },
41 "license": "MIT",
42 "scripts": {
43 "prepare": "cd ..; npm run build:main && npm run build:bin"
44 },
45 "bin": {"acorn": "./bin/acorn"}
46}