-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "web3-helpers",
"version": "0.0.46",
"description": "common web3 helpers and utilities",
"scripts": {
"prepublish": "npm run tsc",
"tsc": "tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/or2008/web3-helpers.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"web3",
"blockchain",
"ethereum"
],
"author": "Or Bachar",
"license": "ISC",
"bugs": {
"url": "https://github.com/or2008/web3-helpers/issues"
},
"homepage": "https://github.com/or2008/web3-helpers#readme",
"dependencies": {
"bignumber.js": "^9.0.0",
"ethereum-input-data-decoder": "^0.2.0",
"multi-blockchain-wallet": "0.0.61",
"node-fetch": "^2.6.0",
"web3": "2.0.0-alpha"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node-fetch": "^2.3.7",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"chai": "^4.2.0",
"eslint": "5.x",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}