forked from bodhiproject/qweb3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.98 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "qweb3",
"namespace": "bodhi",
"version": "1.2.0",
"description": "Qtum JavaScript API comunicating to qtum node over RPC",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bodhiproject/qweb3.js.git"
},
"license": "LGPL-3.0",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"dependencies": {
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"bn.js": "^4.11.8",
"bs58": "^4.0.1",
"chai": "^4.1.2",
"ethjs-abi": "^0.2.1",
"lodash": "^4.17.10",
"utf8": "^3.0.0",
"web3-utils": "^1.0.0-beta.36"
},
"devDependencies": {
"dotenv": "^6.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0"
},
"scripts": {
"lint": "eslint -- src/. test/.",
"lint:fix": "eslint --fix -- src/. test/.",
"test": "mocha --recursive **/*.tests.js",
"test:cleanenv": "mocha --recursive **/*.tests.js --cleanenv",
"precommit": "lint-staged",
"prepush": "npm run lint:fix"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint:fix"
}
},
"homepage": "https://www.bodhi.network/",
"bugs": {
"url": "https://github.com/bodhiproject/qweb3.js/issues"
},
"keywords": [
"qtum",
"bodhi",
"javascript",
"jsonrpc"
],
"author": "bodhi.network",
"authors": [
{
"name": "Frank Hu",
"email": "[email protected]",
"url": "https://www.bodhi.network/"
},
{
"name": "Deric Walintukan",
"email": "[email protected]",
"url": "https://www.bodhi.network/"
},
{
"name": "Chris Li",
"email": "[email protected]",
"url": "https://www.bodhi.network/"
}
]
}