blob: b2d385d85ef31f8ead2b7fc36afc3ec0ca269313 [file] [log] [blame]
Samuel Shuert274a4d62023-12-01 15:04:55 -05001{
2 "name": "acorn-walk",
3 "description": "ECMAScript (ESTree) AST walker",
4 "homepage": "https://github.com/acornjs/acorn",
5 "main": "dist/walk.js",
6 "types": "dist/walk.d.ts",
7 "module": "dist/walk.mjs",
8 "exports": {
9 ".": [
10 {
11 "import": "./dist/walk.mjs",
12 "require": "./dist/walk.js",
13 "default": "./dist/walk.js"
14 },
15 "./dist/walk.js"
16 ],
17 "./package.json": "./package.json"
18 },
19 "version": "8.3.0",
20 "engines": {
21 "node": ">=0.4.0"
22 },
23 "maintainers": [
24 {
25 "name": "Marijn Haverbeke",
26 "email": "marijnh@gmail.com",
27 "web": "https://marijnhaverbeke.nl"
28 },
29 {
30 "name": "Ingvar Stepanyan",
31 "email": "me@rreverser.com",
32 "web": "https://rreverser.com/"
33 },
34 {
35 "name": "Adrian Heine",
36 "web": "http://adrianheine.de"
37 }
38 ],
39 "repository": {
40 "type": "git",
41 "url": "https://github.com/acornjs/acorn.git"
42 },
43 "scripts": {
44 "prepare": "cd ..; npm run build:walk"
45 },
46 "license": "MIT"
47}