-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
{
"name": "ethabi-js",
"version": "0.0.59",
"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/ethabi-js.git"
},
"keywords": [
"Ethereum",
"ABI",
"Web3"
],
"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'"
},
"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",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.0.0-1",
"rollup": "^0.34.1",
"rollup-plugin-babel": "^2.6.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"bignumber.js": "^2.3.0",
"js-sha3": "^0.5.2",
"utf8": "^2.1.1"
}
}