-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
64
65
66
{
"name": "@node-dlc/main",
"description": "Toolkit for Bitcoin DLCs",
"scripts": {
"start": "cd packages/daemon; npm run start",
"bootstrap": "lerna bootstrap",
"format": "prettier --check \"packages/**\" \"examples/**\"",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"clean": "lerna clean",
"test": "lerna run test",
"build": "lerna run build",
"bootstrap:ci": "lerna bootstrap --hoist",
"new:version": "lerna version --no-push --no-git-tag-version && lerna clean --yes && lerna bootstrap",
"publish:all": "lerna publish from-package",
"prepublishOnly": "npm run build"
},
"pre-commit": [
"lint"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"node-dlc",
"dlc",
"bitcoin"
],
"author": "Atomic Finance <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/runtime": "^7.24.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "16.10.3",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"bcrypto": "5.4.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-exclude": "2.0.2",
"chai-http": "4.3.0",
"chai-like": "1.1.1",
"chai-things": "0.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"lerna": "^4.0.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"sinon": "^7.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^4.2.3"
}
}