forked from danakt/node-etherscan-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "node-etherscan-api",
"version": "0.1.3",
"description": "Etherscan API for Node.js",
"main": "./src/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"doc": "jsdoc2md --files src/index.js --template docs/template.hbs > docs/API.md"
},
"types": "index.d.ts",
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.js"
]
},
"keywords": [
"ethereum",
"etherscan",
"etherscan-api",
"api",
"nodejs",
"ether",
"blockchain"
],
"author": "Danakt Frost",
"license": "MIT",
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^24.8.0",
"jsdoc-to-markdown": "^3.0.3"
},
"dependencies": {
"bignumber.js": "^6.0.0",
"request-promise": "^4.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danakt/node-etherscan-api.git"
},
"bugs": {
"url": "https://github.com/danakt/node-etherscan-api/issues"
},
"homepage": "https://github.com/danakt/node-etherscan-api"
}