1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
"name": "estree-walker",
"description": "Traverse an ESTree-compliant AST",
"version": "0.6.1",
"author": "Rich Harris",
"license": "MIT",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Rich-Harris/estree-walker"
},
"main": "dist/estree-walker.umd.js",
"module": "src/estree-walker.js",
"scripts": {
"prepublishOnly": "npm test",
"build": "rollup -c",
"test": "mocha test/test.js",
"pretest": "npm run build"
},
"devDependencies": {
"mocha": "^5.2.0",
"rollup": "^0.67.3"
},
"files": [
"src",
"dist",
"index.d.ts",
"README.md"
]
}
|