-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
43
44
45
46
47
48
49
50
{
"name": "node-source-walk",
"version": "8.0.0",
"description": "Execute a callback on every node of a source code's AST and stop walking when you see fit",
"type": "module",
"exports": {
".": "./index.js"
},
"files": [
"index.js"
],
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"uvu": "uvu test -i fixtures",
"test": "npm run lint && npm run uvu",
"test:ci": "c8 npm run uvu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-source-walk.git"
},
"keywords": [
"ast",
"traversal",
"acorn",
"static analysis",
"source code",
"walker",
"jsx"
],
"author": "Joel Kemp <joel@mrjoelkemp.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dependents/node-source-walk/issues"
},
"homepage": "https://github.com/dependents/node-source-walk",
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"dependencies": {
"@babel/parser": "^7.29.3"
},
"devDependencies": {
"c8": "^11.0.0",
"sinon": "^22.0.0",
"uvu": "^0.5.6",
"xo": "^2.0.2"
}
}