-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.25 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
{
"name": "lisk-elements",
"version": "5.1.4",
"description": "Elements for building blockchain applications in the Lisk network",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-sdk/tree/master/elements/lisk-elements#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": {
"clean": "./scripts/clean.sh",
"format": "prettier --write '**/*'",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"test": "jest",
"test:coverage": "jest --coverage=true --coverage-reporters=text",
"test:ci": "jest --coverage=true --coverage-reporters=json --verbose",
"test:watch": "npm test -- --watch",
"prebuild": "rm -r dist-node/* || mkdir dist-node || true",
"build": "tsc",
"build:check": "node -e \"require('./dist-node')\"",
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"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-passphrase": "^3.1.0",
"@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"
},
"devDependencies": {
"@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",
"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",
"source-map-support": "0.5.19",
"ts-node": "9.1.1",
"tsconfig-paths": "3.9.0",
"typescript": "4.2.3"
}
}