-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "dowdep-cli",
"description": "Command-line interface for dowdep (the downstream dependency miner).",
"author": "Christoph Thiede",
"license": "MIT",
"bin": {
"dowdep-cli": "./bin/run.js"
},
"main": "bin/run.js",
"engines": {
"node": ">=8.0.0"
},
"files": [
"*"
],
"oclif": {
"bin": "dowdep-cli",
"commands": "./src/commands",
"description": "downstream repository mining CLI",
"hooks": {
"init": "./src/oclif.init.ts"
},
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"scripts": {
"lint": "eslint . && eslint --ext=.json",
"test": "./scripts/test-cli.sh"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3",
"cli-progress": "^3.9.1",
"dotenv": "^10.0.0",
"dowdep": "file:./../core",
"it-all": "^1.0.6",
"lodash": "^4.17.21",
"node-filter-async": "^2.0.0",
"oclif": "^1.18.0",
"tslib": "^2"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/cli-progress": "^3.9.2",
"@types/lodash": "^4.14.175",
"@types/mocha": "^9",
"@types/node": "^16",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0",
"eslint-config-oclif-typescript": "^1.0",
"globby": "^11",
"mocha": "^9",
"nyc": "^15",
"ts-node": "^10",
"typescript": "^4.4.3"
}
}