This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathpackage.json
79 lines (79 loc) · 2.58 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
{
"name": "@liskhq/lisk-p2p",
"version": "0.10.0",
"description": "Unstructured P2P library for use with Lisk-related software",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"lisk",
"blockchain",
"p2p"
],
"homepage": "https://github.com/LiskHQ/lisk-sdk/tree/master/elements/lisk-p2p#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-sdk.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-sdk/issues"
},
"engines": {
"node": ">=18.12.0 <=18",
"npm": ">=8.1.0"
},
"main": "dist-node/index.js",
"scripts": {
"clean": "./scripts/clean.sh",
"format": "prettier --write '**/*'",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"test": "npm run test:unit",
"test:coverage": "jest --config=./test/unit/jest.config.js --coverage=true --coverage-reporters=text",
"test:ci": "jest --config=./test/unit/jest.config.js --forceExit --coverage=true --coverage-reporters=json",
"test:unit": "jest --config=./test/unit/jest.config.js",
"test:integration": "jest --config=./test/integration/jest.config.js --runInBand",
"test:functional": "jest --config=./test/functional/jest.config.js --runInBand",
"build:node": "npm run transpile",
"prebuild": "rm -r dist-node/* || mkdir dist-node || true",
"build": "tsc",
"build:check": "node -e \"require('./dist-node')\"",
"enableLocalIPs": "./scripts/enableTestLocalIPs.sh 2 19",
"disableLocalIPs": "./scripts/disableTestLocalIPs.sh 2 19"
},
"dependencies": {
"@liskhq/lisk-codec": "^0.5.0",
"@liskhq/lisk-cryptography": "^4.1.0",
"@liskhq/lisk-validator": "^0.9.0",
"lodash.shuffle": "4.2.0",
"semver": "7.5.2",
"socketcluster-client": "14.3.1",
"socketcluster-server": "14.6.0"
},
"devDependencies": {
"@types/component-emitter": "1.2.8",
"@types/jest": "29.2.3",
"@types/jest-when": "3.5.2",
"@types/jsonwebtoken": "8.3.8",
"@types/lodash.shuffle": "4.2.6",
"@types/node": "18.15.3",
"@types/semver": "7.3.13",
"@types/socketcluster-client": "13.0.0",
"@types/socketcluster-server": "14.2.2",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-lisk-base": "2.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.6",
"jest": "29.3.1",
"jest-extended": "3.2.0",
"jest-when": "3.5.2",
"prettier": "2.8.0",
"source-map-support": "0.5.21",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "5.0.2"
}
}