-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
44 lines (44 loc) · 950 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
43
44
{
"name": "abstract-syntax-tree",
"version": "2.22.0",
"description": "abstract syntax tree",
"main": "index.js",
"scripts": {
"test": "node --test",
"coverage": "c8 npm test"
},
"engines": {
"node": ">=20.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buxlabs/abstract-syntax-tree.git"
},
"keywords": [
"abstract syntax tree",
"javascript",
"ast"
],
"author": "Emil Ajdyna <emil@ajdyna.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buxlabs/abstract-syntax-tree/issues"
},
"files": [
"index.js",
"types.json",
"src"
],
"homepage": "https://github.com/buxlabs/abstract-syntax-tree#readme",
"devDependencies": {
"c8": "^9.1.0"
},
"dependencies": {
"ast-types": "0.14.2",
"astring": "^1.8.6",
"esquery": "^1.5.0",
"meriyah": "^4.4.0",
"pure-conditions": "^1.2.1",
"source-map": "^0.7.4"
}
}