-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 2.02 KB
/
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
45
46
47
48
49
50
51
{
"name": "asty-astq",
"version": "1.14.0",
"description": "Abstract Syntax Tree With Integrated Query Engine",
"keywords": [ "ast", "abstract", "syntax", "tree", "query", "engine", "integration", "asty", "astq" ],
"license": "MIT",
"main": "lib/asty-astq.node.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rse/asty-astq.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"homepage": "https://github.com/rse/asty-astq",
"bugs": "https://github.com/rse/asty-astq/issues",
"devDependencies": {
"grunt": "1.6.1",
"grunt-cli": "1.4.3",
"grunt-contrib-clean": "2.0.1",
"grunt-browserify": "6.0.0",
"grunt-mocha-test": "0.13.3",
"grunt-eslint": "24.3.0",
"@babel/core": "7.24.0",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"mocha": "10.3.0",
"chai": "4.4.1",
"babelify": "10.0.0",
"@babel/preset-env": "7.24.0",
"uglifyify": "5.0.2",
"browserify-header": "1.1.0",
"browserify-derequire": "1.1.1"
},
"dependencies": {
"asty": "1.8.21",
"astq": "2.8.1"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepublishOnly": "grunt default",
"build": "grunt default"
}
}