-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
{
"name": "etherscan-api",
"version": "12.0.1",
"description": "API to etherscan with a simple interface (Etherscan V2, multichain)",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "node --test test/*.test.js",
"test:live": "ETHERSCAN_LIVE=1 node --test test/live/*.test.js",
"docs": "typedoc",
"clean": "rm -rf lib out",
"preversion": "npm run typecheck && npm run changelog",
"postversion": "git push && git push --tags",
"changelog": "rm ./docs/CHANGELOG.md && npx changelog https://github.com/sebs/etherscan-api all > ./docs/CHANGELOG.md && git add ./docs/CHANGELOG.md && git commit ./docs/CHANGELOG.md -m changelog"
},
"keywords": [
"arbiscan",
"ethereum",
"EtherScan.io",
"etherscan",
"blockchain",
"api",
"transaction",
"rest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sebs/etherscan-api.git"
},
"author": "Sebastian Schürmann",
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/sebs/etherscan-api/issues"
},
"homepage": "https://github.com/sebs/etherscan-api#readme",
"devDependencies": {
"@types/node": "22.10.5",
"typedoc": "0.28.19",
"typescript": "6.0.3"
}
}