-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "@carnesen/bitcoin-service",
"description": "A Node.js library for managing the bitcoin service `bitcoind`",
"version": "0.0.1",
"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",
"build:watch": "tsc --watch",
"lint": "tslint --project .",
"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",
"@types/signal-exit": "3.0.0",
"signal-exit": "3.0.2"
},
"devDependencies": {
"@carnesen/bitcoin-software": "0.0.2",
"@carnesen/run-and-exit": "0.2.0",
"@carnesen/tsconfig": "0.1.0",
"@carnesen/tslint-config": "0.1.2",
"@types/jest": "24.0.0",
"@types/node": "10.12.24",
"@types/tempy": "0.2.0",
"jest": "24.1.0",
"rimraf": "2.6.3",
"tempy": "0.2.1",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"typescript": "3.3.3"
},
"files": [
"lib",
"src"
],
"author": {
"name": "Chris Arnesen",
"email": "chris.arnesen@gmail.com"
},
"repository": "git://github.com/carnesen/bitcoin-service.git",
"bugs": {
"url": "https://github.com/carnesen/bitcoin-service/issues"
},
"homepage": "https://github.com/carnesen/bitcoin-service#readme",
"license": "MIT"
}