forked from sebs/etherscan-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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
{
"name": "etherscan-api",
"version": "100.0.0",
"description": "Next generation etherscan-api ",
"scripts": {
"test": "nyc ava-ts test/ -v",
"posttest": "npm run lint",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"docs": "typedoc --module etherscan-api --out docs ./src --tsBuildInfoFile ,/tsconfig.json",
"lint:api": "swagger-cli validate ./api/swagger/swagger.yaml",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebs/etherscan-api.git"
},
"keywords": [
"ethereum",
"api",
"eth"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "S.Schürmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebs/etherscan-api/issues"
},
"homepage": "https://github.com/sebs/etherscan-api#readme",
"dependencies": {
"@types/request-promise-native": "^1.0.16",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"ava": "^2.2.0",
"ava-ts": "^0.25.2",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"swagger-cli": "^2.3.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
}
}