-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "@internet-of-people/iop-ts",
"version": "5.1.0",
"author": {
"url": "https://iop-ventures.com/",
"name": "Internet of People",
"email": "[email protected]"
},
"private": true,
"license": "LGPL-3.0-or-later",
"scripts": {
"install": "lerna bootstrap --ci",
"build": "lerna run --stream --no-bail build",
"clean": "lerna run clean && rimraf node_modules",
"lint": "lerna run --stream --no-bail lint",
"test": "npm run build && lerna run --stream --no-bail test",
"publish:nightly": "./scripts/publish/nightly.sh",
"publish:stable": "./scripts/publish/stable.sh"
},
"dependencies": {
"@arkecosystem/core-container": "^2.7.24",
"@arkecosystem/core-event-emitter": "^2.7.24",
"@arkecosystem/core-interfaces": "^2.7.24",
"@arkecosystem/core-transactions": "^2.7.24",
"@arkecosystem/crypto": "^2.7.24",
"@hapi/boom": "^8.0.0",
"@hapi/hapi": "^18.3.1",
"awilix": "^4.2.2",
"axios": "0.19.0",
"bytebuffer": "5.0.1",
"lodash.clonedeep": "4.5.0",
"multibase": "0.6.0",
"optional-js": "2.1.1",
"p-queue": "6.2.1",
"tslib": "2.0.1"
},
"devDependencies": {
"@arkecosystem/core-http-utils": "^2.7.24",
"@arkecosystem/core-state": "^2.7.24",
"@types/axios": "0.14.0",
"@types/hapi__hapi": "^18.2.5",
"@types/jest": "24.9.0",
"@types/lodash.clonedeep": "4.5.6",
"@types/multibase": "0.6.0",
"@types/node": "12.12.14",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"eslint": "6.7.2",
"husky": "3.1.0",
"jest": "24.9.0",
"jest-extended": "0.11.2",
"lerna": "3.18.5",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run lint && git add ."
}
}
}