This repository has been archived by the owner on Apr 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
159 lines (159 loc) · 4.5 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "lisk-commander",
"version": "2.1.0",
"description": "A command line interface for Lisk",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"lisk",
"blockchain",
"command-line",
"nodejs",
"javascript"
],
"homepage": "https://github.com/LiskHQ/lisk-commander#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-commander.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-commander/issues"
},
"engines": {
"node": ">=8.3.0",
"npm": ">=5.3.0"
},
"main": "dist/index.js",
"bin": {
"lisk": "./bin/run"
},
"scripts": {
"start": "ts-node src/index.js",
"format": "prettier --write \"*.{ts,js,json,md}\" \"{docs,src,test}/**/*.{ts,js,json,md}\"",
"lint": "tslint --format codeFrame --project .",
"lint:fix": "npm run lint -- --fix",
"test": "if [ -z $JENKINS_HOME ]; then npm run test:local; else npm run test:ci; fi",
"test:local": "TS_NODE_PROJECT=./test/tsconfig.json nyc mocha test/{,/**/,/**/**/,/**/**/**/}/*.ts",
"test:ci": "npm run test:local",
"test:watch": "npm run test:local -- --watch",
"test:watch:min": "npm run test:watch -- --reporter=min",
"cover": "if [ -z $JENKINS_HOME ]; then npm run cover:local; else npm run cover:ci; fi",
"cover:base": "NODE_ENV=test nyc report",
"cover:local": "npm run cover:base -- --reporter=html --reporter=text mocha",
"cover:ci": "npm run cover:base -- --reporter=text-lcov mocha | coveralls -v",
"cover:test": "NODE_ENV=test nyc --include \"test/**\" --exclude \"**/node_modules/** coverage/**\" mocha test",
"prebuild": "if test -d dist; then rm -r dist; fi",
"build": "tsc",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && npm shrinkwrap",
"precommit": "lint-staged && npm run lint",
"prepush": "npm run lint && npm test",
"prepublishOnly": "rm -r ./node_modules && npm install && npm run prepush && npm run build"
},
"oclif": {
"commands": "./dist/commands",
"bin": "lisk",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"account": {
"description": "Commands relating to Lisk accounts."
},
"block": {
"description": "Commands relating to Lisk blocks."
},
"config": {
"description": "Manages Lisk Commander configuration."
},
"copyright": {
"description": "Displays copyright notice."
},
"delegate": {
"description": "Commands relating to Lisk delegates."
},
"node": {
"description": "Commands relating to Lisk node."
},
"help": {
"description": "Displays help."
},
"message": {
"description": "Commands relating to user messages."
},
"passphrase": {
"description": "Commands relating to Lisk passphrases."
},
"signature": {
"description": "Commands relating to signatures for Lisk transactions from multisignature accounts."
},
"transaction": {
"description": "Commands relating to Lisk transactions."
},
"warranty": {
"description": "Displays warranty notice."
}
}
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist",
"/docs"
],
"dependencies": {
"@liskhq/lisk-api-client": "2.0.0",
"@liskhq/lisk-constants": "1.2.0",
"@liskhq/lisk-cryptography": "2.0.0",
"@liskhq/lisk-passphrase": "2.0.0",
"@liskhq/lisk-transactions": "2.0.0",
"@oclif/command": "1.5.6",
"@oclif/config": "1.9.0",
"@oclif/errors": "1.2.2",
"@oclif/plugin-help": "2.1.1",
"bip39": "2.5.0",
"chalk": "2.4.1",
"cli-table3": "0.5.0",
"inquirer": "6.2.0",
"lockfile": "1.0.4",
"semver": "5.5.1",
"strip-ansi": "4.0.0",
"tslib": "1.9.3"
},
"devDependencies": {
"@oclif/dev-cli": "1.19.5",
"@oclif/test": "1.2.2",
"@types/bip39": "2.4.0",
"@types/chai": "4.1.5",
"@types/chai-as-promised": "7.1.0",
"@types/expect": "1.20.3",
"@types/inquirer": "0.0.43",
"@types/jquery": "3.3.9",
"@types/lockfile": "1.0.0",
"@types/mocha": "5.2.5",
"@types/node": "10.10.1",
"@types/semver": "5.5.0",
"@types/sinon": "5.0.5",
"@types/sinon-chai": "3.2.0",
"@types/strip-ansi": "3.0.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.2",
"husky": "0.14.3",
"lint-staged": "5.0.0",
"mocha": "4.0.1",
"nyc": "11.3.0",
"prettier": "1.9.2",
"rxjs-compat": "6.3.3",
"sinon": "4.1.2",
"sinon-chai": "2.14.0",
"source-map-support": "0.5.9",
"ts-node": "7.0.1",
"tsconfig-paths": "3.6.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-immutable": "4.7.0",
"typescript": "3.0.3"
}
}