This repository has been archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.67 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": "@parity/etherscan",
"description": "The Parity Promise-based library for interfacing with Etherscan over HTTP",
"version": "2.1.3",
"main": "lib/index.js",
"author": "Parity Team <admin@parity.io>",
"maintainers": [
"Jaco Greeff"
],
"contributors": [],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/js-etherscan.git"
},
"keywords": [
"Ethereum",
"ABI",
"API",
"RPC",
"Parity",
"Promise"
],
"scripts": {
"build": "babel src --out-dir lib --ignore *.spec.js",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "echo \"WARN: npm run lint:css skipped\"",
"lint:js": "eslint src",
"test": "NODE_ENV=test mocha ./src/*.spec.js"
},
"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": "4.2.0",
"eslint": "^6.0.1",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^9.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "7.0.1",
"nock": "11.8.2"
},
"dependencies": {
"@parity/api": "5.1.x",
"bignumber.js": "9.0.0",
"es6-promise": "^4.1.1",
"node-fetch": "^2.2.1",
"qs": "^6.5.0",
"whatwg-fetch": "^3.0.0"
}
}