-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 829 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
{
"name": "estree-assign-parent",
"description": "assign `.parent` properties to all nodes in an ast.",
"version": "1.0.0",
"author": "Renée Kooi <[email protected]>",
"browser": {
"assert": "nanoassert"
},
"bugs": {
"url": "https://github.com/goto-bus-stop/estree-assign-parent/issues"
},
"dependencies": {
"nanoassert": "^2.0.0"
},
"devDependencies": {
"acorn": "^8.0.1",
"standard": "^14.3.1",
"tape": "^5.0.0"
},
"homepage": "https://github.com/goto-bus-stop/estree-assign-parent",
"keywords": [
"ancestors",
"ast",
"parent",
"walk"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/goto-bus-stop/estree-assign-parent.git"
},
"scripts": {
"test": "standard && node test.js"
}
}