-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "lisk-service-blockchain-connector",
"version": "0.7.0-beta.0",
"description": "Lisk Service Blockchain Connector",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-service",
"repository": {
"type": "git",
"url": "[email protected]:LiskHQ/lisk-service.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-service/issues"
},
"private": true,
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"main": "app.js",
"engines": {
"node": ">=16.15.0 <=16",
"npm": ">=8.5.0"
},
"scripts": {
"start": "node app.js",
"clean": "rm -rf ./node_modules",
"test": "npm run test:unit",
"test:unit": "jest --config=jest.config.js --detectOpenHandles --forceExit",
"test:functional": "jest --config=jest.config.functional.js --detectOpenHandles --forceExit"
},
"dependencies": {
"@liskhq/lisk-api-client": "6.0.0-beta.0",
"@liskhq/lisk-codec": "0.3.0-beta.0",
"@liskhq/lisk-cryptography": "4.0.0-beta.0",
"@liskhq/lisk-transactions": "6.0.0-beta.0",
"@liskhq/lisk-validator": "0.7.0-beta.0",
"big-json": "^3.1.0",
"bluebird": "^3.7.2",
"lisk-service-framework": "https://github.com/LiskHQ/lisk-service/raw/30e8e8df1948ccb049e2dd54f779187445aeb7ad/framework/dist/lisk-service-framework-1.4.13.tgz",
"signals": "^1.0.0",
"tar": "^6.1.11"
},
"devDependencies": {
"@babel/preset-env": "^7.14.0",
"babel-jest": "^27.3.0",
"jest": "^27.3.0",
"jest-when": "^3.5.1",
"moleculer": "^0.14.21"
}
}