etherscan-api-e
Version:
API to etherscan with a simple interface
45 lines (44 loc) • 1.42 kB
JSON
{
"name": "etherscan-api-e",
"version": "10.0.6-e1",
"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": "documentation build ./lib/init.js -f html -o out",
"bundle": "npx browserify index.js -s etherscanApi -o dist/bundle.js && git commit ./dist -m bundle && git push",
"preversion": "npm run lint && npm run changelog",
"postversion": "git push && git push --tags",
"changelog": "rm ./docs/CHANGELOG.md && changelog https://github.com/sebs/etherscan-api all > ./docs/CHANGELOG.md && git add ./docs/CHANGELOG.md && git commit ./docs/CHANGELOG.md -m changelog",
"build": "npm run test && npm run docs"
},
"keywords": [
"ethereum",
"EtherScan.io",
"etherscan",
"blockchain",
"api",
"transaction",
"rest"
],
"author": "luckycoco3418",
"repository": "https://github.com/luckyCoco3418/etherscan-api.git",
"license": "ISC",
"devDependencies": {
"browserify": "^16.5.0",
"chai": "^4.2.0",
"changelog": "^1.4.2",
"documentation": "^12.1.1",
"ink-docstrap": "^1.3.2",
"jshint": "^2.10.2",
"mocha": "^6.2.0",
"watch": "^1.0.2"
},
"dependencies": {
"axios": "^0.19.0",
"gh-pages": "^2.1.1",
"querystring": "^0.2.0"
}
}