-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
51
52
{
"name": "@synvert-hq/node-query",
"version": "1.19.5",
"description": "ast node query language",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json && cp src/parser.js lib/",
"generate": "jison -o src/parser.js src/nql.jison src/nql.jisonlex",
"watch:generate": "nodemon --watch 'src' --ext 'jison,jisonlex' --exec 'npm run generate'",
"test": "jest --detectOpenHandles",
"watch:test": "jest --watch --detectOpenHandles",
"prepack": "npm run build && cp src/parser.* lib/ && npm run generate"
},
"repository": {
"type": "git",
"url": "https://git@github.com/synvert-hq/node-query-javascript"
},
"keywords": [
"ast",
"node",
"query",
"typescript"
],
"author": "Richard Huang",
"license": "ISC",
"bugs": {
"url": "https://github.com/synvert-hq/node-query-javascript/issues"
},
"homepage": "https://github.com/synvert-hq/node-query-javascript#readme",
"dependencies": {
"debug": "^4.3.4",
"flat": "^5.0.2",
"typy": "^3.3.0"
},
"devDependencies": {
"@synvert-hq/espree": "^10.0.1",
"@synvert-hq/gonzales-pe": "^1.1.0",
"@types/debug": "^4.1.7",
"@types/dedent": "^0.7.0",
"@types/flat": "^5.0.2",
"@types/mock-fs": "^4.13.1",
"@types/jest": "^27.5.0",
"dedent": "^0.7.0",
"jest": "^28.0.3",
"jison": "^0.4.18",
"mock-fs": "^5.4.0",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.1",
"typescript": "^5.9.3"
}
}