forked from synvert-hq/node-query-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "@xinminlabs/node-query",
"version": "1.11.1",
"description": "ast node query language",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"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://[email protected]/xinminlabs/node-query-javascript"
},
"keywords": [
"ast",
"node",
"query",
"typescript"
],
"author": "Richard Huang",
"license": "ISC",
"bugs": {
"url": "https://github.com/xinminlabs/node-query-javascript/issues"
},
"homepage": "https://github.com/xinminlabs/node-query-javascript#readme",
"dependencies": {
"debug": "^4.3.4",
"flat": "^5.0.2",
"typy": "^3.3.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/dedent": "^0.7.0",
"@types/flat": "^5.0.2",
"@types/jest": "^27.5.0",
"dedent": "^0.7.0",
"jest": "^28.0.3",
"jison": "^0.4.18",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.1",
"typescript": "^4.7.2"
}
}