-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "@carnesen/bitcoin-regtest-service",
"description": "A Node.js library for managing a regtest-mode bitcoind service",
"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",
"build:watch": "tsc --watch",
"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/bitcoin-service": "0.0.1",
"@carnesen/bitcoin-software": "0.0.3"
},
"devDependencies": {
"@carnesen/tsconfig": "0.1.0",
"@carnesen/tslint-config": "0.1.2",
"@types/jest": "24.0.5",
"@types/node": "11.9.4",
"jest": "24.1.0",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"typescript": "3.3.3"
},
"author": {
"name": "Chris Arnesen",
"email": "[email protected]"
},
"repository": "git://github.com/carnesen/bitcoin-regtest-service.git",
"bugs": {
"url": "https://github.com/carnesen/bitcoin-regtest-service/issues"
},
"homepage": "https://github.com/carnesen/bitcoin-regtest-service",
"license": "MIT"
}