forked from valyakin/aa-testkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "aa-testkit",
"version": "0.3.13",
"main": "main.js",
"author": "Obyte",
"license": "MIT",
"private": true,
"scripts": {
"test": "mocha",
"test:aa": "mocha test/aa/**spec.js",
"test:core": "mocha test/core/**spec.js",
"test:utils": "mocha test/utils/**spec.js",
"test:custom-nodes": "mocha test/custom-nodes/**spec.js",
"test:all": "mocha test/**/**spec.js",
"lint": "node ./node_modules/.bin/eslint --ext .js --max-warnings=0 --fix src test"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"headless-obyte": "git+https://github.com/byteball/headless-obyte",
"obyte-explorer": "git+https://github.com/byteball/obyte-explorer",
"obyte-hub": "git+https://github.com/byteball/obyte-hub",
"obyte-witness": "git+https://github.com/byteball/obyte-witness",
"ocore": "git+https://github.com/byteball/ocore",
"bitcore-lib": "^0.13.14",
"bitcore-mnemonic": "~1.0.0",
"config": "^3.2.2",
"deep-equal-in-any-order": "^1.0.27",
"joi": "^14.3.1",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"secp256k1": "^3.1.0",
"timekeeper": "^2.2.0",
"uniqid": "^5.0.3",
"yargs": "^14.0.0",
"obyte-explorer-dist": "git+https://github.com/byteball/obyte-explorer-dist"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.0",
"pre-commit": "^1.2.2"
},
"resolutions": {
"chalk": "^3.0.0",
"cli-width": "^2.2.1"
},
"pre-commit": [
"lint"
]
}