-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 999 Bytes
/
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
{
"name": "@jadepool/sdk",
"version": "1.1.0",
"description": "Jadepool nodejs SDK",
"main": "src/index.js",
"bin": {
"jpcli": "./bin/cli.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"test": "mocha test/**/*.test.js"
},
"engines": {
"node": ">=8.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nbltrust/jadepool-hub-sdk-nodejs.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@jadepool/crypto": "^2.2.0",
"argparse": "^1.0.10",
"axios": "^0.19.2",
"is-base64": "^0.1.0",
"is-hex": "^1.1.3",
"js-sha256": "^0.9.0",
"lodash": "^4.17.15",
"secp256k1": "^3.5.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.11.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0"
}
}