-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 921 Bytes
/
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": "decrypt-dlc-cli",
"version": "1.0.3",
"description": "",
"main": "lib/index.js",
"bin": {
"decrypt-dlc": "bin/decrypt-dlc"
},
"scripts": {
"test": "ava"
},
"keywords": [
"dlc",
"DLC",
"decrypt",
"read",
"download",
"container",
"links",
"url",
"cli",
"command",
"line"
],
"author": "Dominik Winter <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"commander": "^2.20.0",
"decrypt-dlc": "^2.0.0",
"fs-extra": "^8.0.1",
"is-file": "^1.0.0",
"is-url": "^1.2.4",
"signale": "^1.4.0"
},
"devDependencies": {
"ava": "^2.0.0",
"eslint": "^5.16.0",
"eslint-plugin-node": "^9.1.0",
"execa": "^1.0.0"
},
"resolutions": {
"acorn": "^6.4.1",
"minimist": "^1.2.2"
},
"ava": {
"files": [
"test/test.js"
]
}
}