-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "@carnesen/bitcoin-service-cli",
"description": "A command-line interface for managing the bitcoin server process `bitcoind`",
"version": "0.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"bitcoin-service": "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 .",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && ts-node src/dev.ts && npm run test:unit && npm run build",
"test:unit": "jest src --coverage",
"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/bitcoin-service": "0.0.0",
"@carnesen/cli": "0.3.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",
"tempy": "0.2.1",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"typescript": "3.3.3"
},
"license": "MIT",
"author": {
"name": "Chris Arnesen",
"email": "chris.arnesen@gmail.com"
},
"repository": "git://github.com/carnesen/bitcoin-service-cli.git",
"bugs": {
"url": "https://github.com/carnesen/bitcoin-service-cli/issues"
},
"homepage": "https://github.com/carnesen/bitcoin-service-cli#readme",
"files": [
"src",
"lib"
]
}