forked from ArkEcosystem/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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-tester-cli",
"description": "Tester CLI for ARK Core",
"version": "0.1.1",
"contributors": [
"Brian Faust <brian@ark.io>",
"Alex Barnsley <alex@ark.io>"
],
"license": "MIT",
"main": "lib/index.js",
"bin": {
"ark:tester": "./bin/tester"
},
"scripts": {
"start": "./bin/tester",
"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 ./ --ignores=commander"
},
"dependencies": {
"arkjs": "https://github.com/ArkEcosystem/ark-js#master",
"axios": "^0.18.0",
"bip39": "^2.5.0",
"clipboardy": "^1.2.3",
"commander": "^2.15.1",
"delay": "^2.0.0",
"pino": "^4.16.1",
"superheroes": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}