-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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": "detherweb3",
"version": "0.14.0",
"description": "Dether SDK to easily call smart contract with web3js",
"main": "lib/index.js",
"scripts": {
"babel-node": "babel-node",
"example1": "npm run babel-node -- examples/getInfoFromZone.js",
"example2": "npm run babel-node -- examples/getInfoNetworkAccount.js",
"test": "mocha --require babel-core/register test/test.config.js test/**/*.test.js test/specs/**/*.test.js --timeout 15000",
"prepublish": "babel src --out-dir lib",
"build": "babel src --out-dir lib",
"esdoc": "./node_modules/.bin/esdoc",
"publish:esdoc": "gh-pages -d esdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dethertech/dether.web3.git"
},
"keywords": [
"Dether",
"ethereum",
"sdk",
"web3",
"metamask"
],
"author": "Dether Team <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dethertech/dether.web3/issues"
},
"homepage": "https://github.com/dethertech/dether.web3#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chaithereum": "https://github.com/SafeMarket/chaithereum.git",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"gh-pages": "^1.1.0",
"mocha": "^5.0.5",
"sinon": "^4.4.8"
},
"dependencies": {
"bn.js": "^4.11.8",
"bignumber.js": "^7.2.1",
"dethercontract": "^3.6.0",
"ethers": "^3.0.24",
"isomorphic-ws": "^4.0.1",
"uuid": "^3.2.1",
"web3": "^1.0.0-beta.35",
"web3-eth-abi": "^1.0.0-beta.35",
"xhr-request": "^1.1.0"
}
}