-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
{
"name": "@carnesen/bitcoin-rpc-cli",
"description": "A Node.js command-line client for bitcoin's remote procedure call (RPC) interface",
"version": "0.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"bitcoin-rpc": "lib/index.js"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:clean": "rimraf lib && npm run build",
"lint": "tslint --project tsconfig.build.json",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test:unit && npm run build",
"test:unit": "jest --coverage src",
"test:watch": "npm run test:unit -- --watch",
"preversion": "npm test && npm run build:clean",
"postversion": "npm publish --access public"
},
"dependencies": {
"@carnesen/bitcoin-rpc": "0.0.0",
"@carnesen/bitcoin-rpc-href": "0.0.1",
"@carnesen/cli": "0.3.3"
},
"devDependencies": {
"@carnesen/bitcoin-regtest-service": "0.0.0",
"@carnesen/tsconfig": "0.1.0",
"@carnesen/tslint-config": "0.1.2",
"@types/jest": "24.0.5",
"@types/node": "11",
"jest": "24.1.0",
"rimraf": "2.6.3",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"typescript": "3.3.3"
},
"files": [
"src",
"lib"
],
"keywords": [
"bitcoin",
"typescript",
"rpc",
"bitcoin-rpc",
"bitcoind-rpc"
],
"author": {
"name": "Chris Arnesen",
"email": "chris.arnesen@gmail.com"
},
"repository": "carnesen/bitcoin-rpc-cli",
"bugs": {
"url": "https://github.com/carnesen/bitcoin-rpc-cli/issues"
},
"homepage": "https://github.com/carnesen/bitcoin-rpc-cli#readme",
"license": "MIT"
}