-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 927 Bytes
/
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
{
"name": "chainseeker",
"version": "3.0.1",
"description": "API library for chainseeker.info",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"prepack": "npm run clean && npm run build",
"test": "jest --coverage --max-workers=1"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src/*.*",
"dist/*.*"
],
"author": "Vis Virial <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chainseeker/chainseeker-lib.git"
},
"homepage": "https://github.com/chainseeker/chainseeker-lib#readme",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node-fetch": "^2.5.10",
"bitcoinjs-lib": "^5.2.0",
"dotenv": "^10.0.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}