-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 934 Bytes
/
package.json
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
40
41
42
{
"name": "dash-ast",
"description": "walk an AST, quickly",
"version": "2.0.1",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/goto-bus-stop/dash-ast/issues"
},
"devDependencies": {
"acorn": "8.1.1",
"astw": "^2.2.0",
"estree-walk": "^2.2.0",
"estree-walker": "^2.0.0",
"nanobench": "^2.1.1",
"semver": "^6.3.0",
"standard": "^15.0.0",
"tape": "^5.0.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": {
"lint": "standard",
"tests-only": "node test && node bench",
"test": "npm run lint && npm run tests-only"
}
}