-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
72 lines (72 loc) · 1.72 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
{
"name": "lisk-core",
"version": "2.0.0-alpha.12",
"description": "Lisk blockchain application platform",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "GPL-3.0",
"private": true,
"keywords": [
"cryptocurrency",
"blockchain",
"lisk",
"nodejs",
"javascript"
],
"homepage": "https://github.com/LiskHQ/lisk-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-core.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-sdk/issues"
},
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"console": "node scripts/console.js",
"lint": "tslint --format verbose --project .",
"lint:fix": "tslint --fix --project .",
"format": "prettier --write '**/*'",
"prebuild": "if test -d dist; then rm -r dist; fi",
"build": "tsc",
"test": "mocha test"
},
"dependencies": {
"@liskhq/bignum": "1.3.1",
"@liskhq/lisk-cryptography": "2.1.0-alpha.2",
"@liskhq/lisk-transactions": "2.1.0-alpha.13",
"async": "2.6.1",
"bluebird": "3.5.3",
"commander": "2.19.0",
"deep-diff": "1.0.2",
"lisk-commander": "2.2.0-alpha.3",
"lisk-sdk": "2.0.0-alpha.11",
"lodash": "4.17.11",
"moment": "2.23.0",
"pm2": "3.5.0",
"semver": "5.6.0",
"tempy": "0.2.1"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"co-mocha": "1.2.2",
"coveralls": "3.0.2",
"mocha": "5.2.0",
"prettier": "1.16.4",
"sinon": "7.2.2",
"sinon-chai": "3.3.0",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"tslint-immutable": "5.1.2",
"typescript": "3.3.1"
},
"lisk": {
"minVersion": "1.1.0-rc.0",
"protocolVersion": "1.0"
}
}