forked from Brittany-Reid/node_code_query
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
53
54
55
56
57
{
"name": "node_code_query",
"version": "1.0.0",
"description": "Node REPL to query samples from libraries",
"main": "ncq/ncq.js",
"repository": {
"type": "git",
"url": "https://github.com/damorimRG/node_code_query.git"
},
"engines": {
"node": "<=12.18.3"
},
"scripts": {
"nargs": "node --max-old-space-size=4096",
"install": "npm run setup",
"setup": "npm run nargs ncq/setup",
"start": "npm run nargs ncq/main",
"debug": "npm run nargs ncq/main -- --log",
"analytics": "npm run nargs ncq/main -- --usage",
"searchless": "npm run nargs ncq/main -- --usage --searchless",
"test": "mocha tests",
"coverage": "nyc npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"adm-zip": "^0.4.16",
"ansi-colors": "^4.1.1",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"chalk-pipe": "^4.0.0",
"cli-progress": "^3.8.2",
"clipboardy": "^2.3.0",
"data-store": "^4.0.3",
"enquirer": "^2.3.6",
"eslint": "^7.6.0",
"espree": "^7.2.0",
"estraverse": "^5.2.0",
"flexsearch": "^0.6.32",
"fs-extra": "^9.0.1",
"natural": "^2.1.3",
"progress-monitor": "1.0.0",
"rimraf": "^3.0.2",
"stopword": "^1.0.1",
"strip-ansi": "^6.0.0",
"to-width": "^1.0.4",
"tty-table": "^4.1.3",
"winston": "^3.3.3",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"sinon": "^9.0.2"
}
}