-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "node-baka",
"version": "0.2.2",
"description": "A simple CLI tool with some utilities",
"keywords": [
"cli",
"download",
"utilities",
"commander"
],
"main": "./src/index.js",
"author": {
"name": "diego-c",
"url": "https://github.com/diego-c"
},
"license": "MIT",
"scripts": {
"build": "cd ts/ && tsc --watch",
"start": "node ./src/index",
"test": "rm -rf zip-test && jest",
"generate-docs": "typedoc ./ts --exclude node_modules --ignoreCompilerErrors --target ES6 --out ./docs"
},
"bugs": {
"url": "https://github.com/diego-c/node-baka/issues"
},
"bin": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/diego-c/node-baka/"
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"commander": "^2.14.1",
"gzip-size": "^4.1.0",
"on-finished": "^2.3.0",
"speedometer": "^1.0.0"
},
"devDependencies": {
"@types/blessed": "^0.1.10",
"@types/jest": "^22.2.0",
"@types/node": "^9.4.7",
"jest": "^22.4.2"
}
}