-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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
{
"name": "lisk-framework",
"version": "0.8.4",
"description": "Lisk blockchain application platform",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"cryptocurrency",
"blockchain",
"lisk",
"nodejs",
"javascript"
],
"homepage": "https://github.com/LiskHQ/lisk-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-sdk.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-sdk/issues"
},
"engines": {
"node": ">=12.13.0 <=12",
"npm": ">=6.12.0"
},
"main": "dist-node/index.js",
"scripts": {
"start": "node src/index.js",
"start:test:app": "node test/test_app",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"format": "prettier --write '**/*'",
"test": "jest --config=./test/unit/jest.config.js",
"test:coverage": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=text",
"copy-static-files": "copyfiles -u 1 src/**/*.d.ts ./dist-node",
"prebuild": "rm -r dist-node/* || mkdir dist-node || true",
"build": "tsc && npm run copy-static-files",
"test:unit": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=json --verbose",
"test:integration": "jest --config=./test/integration/jest.config.js",
"test:functional": "jest --config=./test/functional/jest.config.js --runInBand"
},
"dependencies": {
"@liskhq/lisk-api-client": "^5.1.3",
"@liskhq/lisk-bft": "^0.3.2",
"@liskhq/lisk-chain": "^0.3.2",
"@liskhq/lisk-codec": "^0.2.0",
"@liskhq/lisk-cryptography": "^3.1.0",
"@liskhq/lisk-db": "^0.2.0",
"@liskhq/lisk-genesis": "^0.2.2",
"@liskhq/lisk-p2p": "^0.7.1",
"@liskhq/lisk-transaction-pool": "^0.5.0",
"@liskhq/lisk-transactions": "^5.1.1",
"@liskhq/lisk-tree": "^0.2.0",
"@liskhq/lisk-utils": "^0.2.0",
"@liskhq/lisk-validator": "^0.6.0",
"bunyan": "1.8.15",
"debug": "4.3.1",
"eventemitter2": "6.4.4",
"fs-extra": "9.1.0",
"pm2-axon": "4.0.1",
"pm2-axon-rpc": "0.7.1",
"ps-list": "7.0.0",
"sodium-native": "3.2.0",
"ws": "7.4.6"
},
"devDependencies": {
"@liskhq/lisk-passphrase": "^3.1.0",
"@types/bunyan": "1.8.6",
"@types/jest": "26.0.21",
"@types/jest-when": "2.7.2",
"@types/node": "12.20.6",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"copyfiles": "2.2.0",
"eslint": "7.22.0",
"eslint-config-lisk-base": "2.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.2",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"jest-when": "3.2.1",
"prettier": "2.2.1",
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"typescript": "4.2.3"
}
}