-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.53 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "nbxplorer-client",
"version": "2.1.0",
"description": "A NodeJS client library for controlling NBXplorer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc -p ./tsconfig.json",
"clean": "rm -rf ./dist",
"coverage": "npm run unit -- --coverage",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prepublishOnly": "npm run format:ci && npm run lint && npm run build",
"prettier": "prettier 'src/**/*.ts'",
"test": "npm run format:ci && npm run lint && npm run coverage",
"unit": "jest --config=jest.json --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junderw/NBXplorer.NodeJS.git"
},
"keywords": [
"NBXplorer",
"bitcoin",
"nodejs"
],
"author": "Jonathan Underwood",
"license": "MIT",
"bugs": {
"url": "https://github.com/junderw/NBXplorer.NodeJS/issues"
},
"homepage": "https://github.com/junderw/NBXplorer.NodeJS#readme",
"dependencies": {
"bs58check": "^2.1.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"@types/jest": "^24.0.16",
"@types/node": "^12.6.8",
"@types/request-promise-native": "^1.0.16",
"bitcoinjs-lib": "^5.1.2",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"regtest-client": "^0.2.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}