This repository has been archived by the owner on Dec 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.44 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@parity/api",
"description": "The Parity Promise-based API library for interfacing with Ethereum over RPC",
"version": "2.1.24",
"main": "lib/index.js",
"author": "Parity Team <admin@parity.io>",
"maintainers": [
"Jaco Greeff",
"Nicolas Gotchac"
],
"contributors": [],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/js-api.git"
},
"keywords": [
"Ethereum",
"API",
"RPC",
"Parity",
"Promise"
],
"engines": {
"node": ">=6.4"
},
"scripts": {
"build": "rimraf lib && babel src --out-dir lib --ignore *.spec.js",
"ci:makeshift": "makeshift",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "echo \"WARN: npm run lint:css skipped\"",
"lint:js": "eslint src",
"test": "cross-env NODE_ENV=test mocha 'src/*.spec.js' 'src/**/*.spec.js'",
"test:coverage": "cross-env NODE_ENV=test istanbul cover _mocha 'src/*.spec.js' 'src/**/*.spec.js' && coveralls < coverage/lcov.info"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"eslint": "^4.4.0",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"jsdom": "^11.1.0",
"makeshift": "^1.1.0",
"mocha": "^3.4.2",
"mock-local-storage": "1.0.2",
"mock-socket": "6.0.4",
"nock": "9.0.7",
"rimraf": "^2.6.2",
"sinon": "1.17.7",
"sinon-as-promised": "4.0.2",
"sinon-chai": "2.8.0"
},
"dependencies": {
"@parity/abi": "~2.1.4",
"@parity/jsonrpc": "2.1.x",
"@parity/wordlist": "1.1.x",
"bignumber.js": "4.1.0",
"blockies": "0.0.2",
"es6-error": "4.0.2",
"es6-promise": "^4.1.1",
"eventemitter3": "^2.0.2",
"isomorphic-fetch": "^2.2.1",
"js-sha3": "0.5.5",
"lodash": "^4.17.4",
"store": "^2.0.12",
"websocket": "^1.0.25"
}
}