forked from sebs/etherscan-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "etherscan-api",
"version": "3.0.8",
"description": "API to etherscan with a simple interface",
"main": "index.js",
"scripts": {
"test": "mocha -t 20000",
"posttest": "npm run lint",
"lint": "jshint lib test",
"docs": "jsdoc -c ./jsdoc.json -t ./node_modules/ink-docstrap/template -R ./Readme.md -u ./docs",
"bundle": "browserify index.js -s etherscanApi -o dist/bundle.js && git commit ./dist -m bundle && git push",
"preversion": "npm run lint && npm run changelog",
"pages": "node ./scripts/publish-gh.js",
"postversion": "git push && git push --tags && npm run pages",
"changelog": "rm ./docs/CHANGELOG.md && changelog https://github.com/sebs/etherscan-api all > ./docs/CHANGELOG.md && git add . && git commit . -m changelog",
"build": "npm run test && npm run docs",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"keywords": [
"ethereum",
"EtherScan.io",
"etherscan",
"api",
"transaction",
"rest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sebs/etherscan-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sebs/etherscan-api/issues"
},
"homepage": "https://github.com/sebs/etherscan-api#readme",
"devDependencies": {
"chai": "^4.0.2",
"changelog": "^1.3.0",
"gh-pages": "^1.0.0",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.4.0",
"jshint": "^2.9.5",
"mocha": "^3.0.2",
"watch": "^1.0.2"
},
"dependencies": {
"browserify": "^14.4.0",
"jsdoc": "^3.4.3",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"restify-clients": "^1.5.0",
"snyk": "^1.36.2"
},
"snyk": true
}