-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 KB
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
{
"name": "ethapi-js",
"version": "0.4.2",
"main": "index.js",
"jsnext:main": "lib/index.js",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jacogr/ethapi-js.git"
},
"keywords": [
"Ethereum",
"ABI",
"Web3",
"RPC",
"Promise"
],
"scripts": {
"build": "rollup -c",
"coveralls": "npm run testCoverage && coveralls < coverage/lcov.info",
"lint": "eslint --ignore-path .gitignore ./lib/",
"release": "./scripts/release.sh",
"test": "npm run testOnce -- -w",
"testCoverage": "istanbul cover _mocha -- 'lib/**/*.spec.js'",
"testOnce": "mocha 'lib/**/*.spec.js'",
"testE2E": "mocha 'lib/**/*.e2e.js'"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"eslint": "^3.1.0",
"eslint-config-semistandard": "^6.0.2",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"ethereum-rpc-json": "ethcore/ethereum-rpc-json#35385fbd71973c4bafe5f58a9a455be69f6f1c09",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.0.0-1",
"mock-socket": "^3.0.1",
"nock": "^8.0.0",
"rollup": "^0.34.1",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"websocket": "^1.0.23"
},
"dependencies": {
"bignumber.js": "^2.3.0",
"es6-promise": "^3.2.1",
"ethabi-js": "^0.0.59",
"isomorphic-fetch": "^2.2.1",
"js-sha3": "^0.5.2"
}
}