-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.19 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
52
53
{
"name": "node_code_query",
"version": "2.0.0",
"description": "",
"main": "index.js",
"bin": {
"ncq": "./src/cli.js"
},
"scripts": {
"nargs": "node --max-old-space-size=4096",
"install": "npm run setup",
"setup": "npm run nargs setup",
"test": "mocha test --max-old-space-size=4096",
"coverage": "nyc npm run test",
"info": "mocha test/info --max-old-space-size=4096",
"start": "npm run nargs src/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@gnd/ink": "^3.1.2",
"adm-zip": "^0.5.5",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"commander": "^8.1.0",
"csv-parse": "^4.16.0",
"eslint": "^7.28.0",
"eslint-plugin-node": "^11.1.0",
"flexsearch": "^0.6.32",
"fs-extra": "^10.0.0",
"ink-scroll-prompts": "^0.1.0",
"natural": "^5.0.3",
"progress-monitor": "^1.0.0",
"react": "^16.14.0",
"rimraf": "^3.0.2",
"stopword": "^1.0.9",
"winston": "^3.3.3"
},
"devDependencies": {
"delay": "^5.0.0",
"mocha": "^9.0.0",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"strip-ansi": "^6.0.0"
},
"nyc": {
"exclude": [
"src/patch",
"test"
]
}
}