-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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",
"description": "A Bitcoin remote procedure call (RPC) client",
"version": "0.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"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"
},
"dependencies": {
"@carnesen/bitcoin-config": "0.0.3",
"@carnesen/coded-error": "0.1.0"
},
"devDependencies": {
"@carnesen/bitcoin-regtest-service": "0.0.0",
"@carnesen/tsconfig": "0.1.0",
"@carnesen/tslint-config": "0.1.2",
"@types/jest": "24.0.0",
"@types/node": "10.12.24",
"@types/temp-write": "3.3.0",
"@types/tempy": "0.2.0",
"jest": "24.1.0",
"rimraf": "2.6.3",
"temp-write": "3.4.0",
"tempy": "0.2.1",
"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": "[email protected]"
},
"repository": "carnesen/bitcoin-rpc",
"bugs": {
"url": "https://github.com/carnesen/bitcoin-rpc/issues"
},
"homepage": "https://github.com/carnesen/bitcoin-rpc",
"license": "MIT"
}