-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "downlater",
"version": "0.0.0",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/dylanscott/downlater.git"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"bin": {
"dladd": "./out/dladd.js",
"dldrain": "./out/dldrain.js",
"dlq": "./out/dlq.js",
"dlrm": "./out/dlrm.js"
},
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/jest": "^24.0.17",
"@types/lodash": "^4.14.136",
"@types/moment": "^2.13.0",
"@types/node": "^12.7.1",
"@types/prompts": "^2.0.1",
"@types/sqlite3": "^3.1.5",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {
"cli-table": "^0.3.1",
"kleur": "^3.0.3",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"pretty-bytes": "^5.3.0",
"prompts": "^2.2.1",
"sqlite3": "^4.0.9"
}
}