package.json
843 Bytes
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
31
32
33
34
35
36
37
38
39
{
"name": "dash-ast",
"description": "walk an AST, quickly",
"version": "1.0.0",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/goto-bus-stop/dash-ast/issues"
},
"devDependencies": {
"acorn": "^5.5.3",
"astw": "^2.2.0",
"estree-walk": "^2.2.0",
"estree-walker": "^0.5.2",
"nanobench": "^2.1.1",
"standard": "^11.0.1",
"tape": "^4.9.0"
},
"homepage": "https://github.com/goto-bus-stop/dash-ast",
"keywords": [
"ast",
"estree",
"javascript",
"parse",
"transform",
"tree",
"visitor",
"walk",
"walker"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/goto-bus-stop/dash-ast.git"
},
"scripts": {
"test": "standard && node test && node bench"
}
}