-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.42 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
{
"name": "mweb3",
"namespace": "Metrix",
"version": "1.0.0",
"description": "Metrix JavaScript API comunicating to Metrix node over RPC",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/TheLindaProjectInc/mweb3-js.git"
},
"license": "LGPL-3.0",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"dependencies": {
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"bs58": "^5.0.0",
"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": "^16.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"husky": "^7.0.4",
"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"
},
"husky": {
"hooks": {
"pre-push": "npm run lint:fix"
}
},
"homepage": "https://www.metrixcoin.com/",
"bugs": {
"url": "https://github.com/TheLindaProjectInc/mweb3-js/issues"
},
"keywords": [
"metrix",
"javascript",
"jsonrpc"
],
"author": "metrixcoin.com",
"authors": [
]
}