This repository was archived by the owner on Dec 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@bitaccess/blockbook-client",
"version": "0.7.8",
"description": "Client for interacting with Trezor's blockbook API",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"types": "dist/lib/index.d.ts",
"esnext": "dist/lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:bitaccess/blockbook-client.git"
},
"homepage": "https://github.com/bitaccess/blockbook-client#readme",
"bugs": {
"url": "https://github.com/bitaccess/blockbook-client/issues"
},
"keywords": [
"bitcoin",
"ethereum",
"blockchain",
"blockbook"
],
"files": [
"dist/",
"src/"
],
"contributors": [
"Dylan Seago <dylan@bitaccess.co>"
],
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"prebuild": "rimraf dist",
"build": "tsc --build ./tsconfig.build.json && rollup -c rollup.config.js",
"start": "rollup -c rollup.config.ts -w",
"pretest": "npm run lint",
"test": "jest --runInBand",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"preversion": "bin/preversion.sh",
"version": "npm run build",
"postversion": "git push && git push --tags",
"release": "npm publish"
},
"devDependencies": {
"@bitaccess/ts-config": "^1.3.2",
"@types/debounce": "^1.2.0",
"@types/jest": "^27.0.2",
"@types/node": "^10.17.3",
"@types/qs": "^6.9.0",
"@types/ws": "^7.4.1",
"coveralls": "^3.1.1",
"jest": "^27.2.4",
"jest-circus": "^27.2.4",
"jest-config": "^27.2.4",
"lint-staged": "^11.2.0",
"node-fetch": "^2.6.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^1.26.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^27.0.5",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.9.9"
},
"dependencies": {
"@bitaccess/ts-common": "^1.0.0",
"axios": "^0.22.0",
"io-ts": "^1.10.4",
"qs": "^6.9.1",
"ws": "^7.5.5"
}
}