forked from ArkEcosystem/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 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
{
"name": "@arkecosystem/core-blockchain",
"description": "Blockchain Manager for Ark Core",
"version": "2.2.2",
"contributors": [
"François-Xavier Thoorens <[email protected]>",
"Kristjan Košič <[email protected]>",
"Brian Faust <[email protected]>"
],
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"publish:alpha": "npm publish --tag alpha",
"publish:beta": "npm publish --tag beta",
"publish:rc": "npm publish --tag rc",
"publish:latest": "npm publish --tag latest",
"prepublishOnly": "yarn build",
"pretest": "bash ../../scripts/pre-test.sh",
"compile": "../../node_modules/typescript/bin/tsc",
"build": "yarn clean && yarn compile",
"build:watch": "yarn clean && yarn compile -w",
"clean": "del dist",
"docs": "../../node_modules/typedoc/bin/typedoc src --out docs",
"lint": "../../node_modules/tslint/bin/tslint -c ../../tslint.json 'src/**/*.ts' '__tests__/**/*.ts' --fix",
"test": "cross-env CORE_ENV=test jest --runInBand --forceExit",
"test:coverage": "cross-env CORE_ENV=test jest --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
"test:debug": "cross-env CORE_ENV=test node --inspect-brk ../../node_modules/.bin/jest --runInBand",
"test:watch": "cross-env CORE_ENV=test jest --runInBand --watch",
"test:watch:all": "cross-env CORE_ENV=test jest --runInBand --watchAll",
"updates": "../../node_modules/npm-check-updates/bin/npm-check-updates -a"
},
"dependencies": {
"@arkecosystem/core-container": "^2.2.2",
"@arkecosystem/core-interfaces": "^2.2.2",
"@arkecosystem/core-utils": "^2.2.2",
"@arkecosystem/crypto": "^2.2.2",
"async": "^2.6.2",
"awilix": "^4.2.0",
"delay": "^4.1.0",
"immutable": "^4.0.0-rc.12",
"lodash.get": "^4.4.2",
"pluralize": "^7.0.0",
"pretty-ms": "^4.0.0",
"xstate": "^4.3.1"
},
"devDependencies": {
"@arkecosystem/core-p2p": "^2.2.2",
"@arkecosystem/core-test-utils": "^2.2.2",
"@types/async": "^2.4.0",
"@types/lodash.get": "^4.4.4",
"@types/pluralize": "^0.0.29",
"@types/pretty-ms": "^4.0.0",
"axios": "^0.18.0",
"axios-mock-adapter": "^1.16.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.x"
},
"jest": {
"preset": "../../jest-preset.json"
}
}