-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "codechain-keystore-cli",
"version": "0.8.3",
"description": "A cli tool which manages CodeChain accounts",
"main": "build/index.js",
"bin": {
"cckey": "build/index.js"
},
"repository": "[email protected]:CodeChain-io/codechain-keystore-cli.git",
"author": "CodeChain Team <[email protected]>",
"bugs": {
"url": "https://github.com/codechain-io/codechain-keystore-cli/issues"
},
"homepage": "https://github.com/CodeChain-io/codechain-keystore-cli#readme",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p .",
"test": "yarn lint",
"lint": "tslint -p . && prettier 'src/**/*.{ts,json,js}' -l",
"fmt": "tslint -p . --fix && prettier 'src/**/*.{ts,json,js}' --write"
},
"files": [
"build"
],
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/lodash": "^4.14.116",
"@types/node": "^10.7.1",
"pkg": "^4.4.0",
"prettier": "1.14.2",
"ts-node": "^7.0.1",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.10.0",
"typescript": "^3.0.1"
},
"dependencies": {
"codechain-keystore": "^0.6.3",
"codechain-primitives": "^1.0.4",
"commander": "^2.17.1",
"enquirer": "^2.3.1",
"lodash": "^4.17.14"
}
}