forked from ArkEcosystem/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "@arkecosystem/core-blockchain",
"description": "Blockchain Manager for ARK Core",
"version": "0.1.1",
"contributors": [
"François-Xavier Thoorens <fx@ark.io>",
"Kristjan Košič <kristjan@ark.io>",
"Brian Faust <brian@ark.io>"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build:docs": "../../node_modules/.bin/jsdoc -c jsdoc.json",
"test": "ARK_ENV=test jest --forceExit",
"test:coverage": "ARK_ENV=test jest --coverage --forceExit",
"test:debug": "ARK_ENV=test node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
"test:watch": "ARK_ENV=test jest --runInBand --watch",
"test:watch:all": "ARK_ENV=test jest --runInBand --watchAll",
"lint": "eslint ./ --fix",
"depcheck": "depcheck ./",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"@arkecosystem/core-container": "^0.1.1",
"@arkecosystem/crypto": "^0.1.1",
"async": "^2.6.1",
"delay": "^2.0.0",
"interval-to-human": "^0.1.1",
"xstate": "^3.2.1",
"snyk": "^1.231.0"
},
"publishConfig": {
"access": "public"
},
"snyk": true
}