-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.59 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.59 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@node-dlc/main",
"private": true,
"description": "Toolkit for Bitcoin DLCs",
"scripts": {
"start": "cd packages/daemon; npm run start",
"bootstrap": "yarn install",
"format": "prettier --check \"packages/**\"",
"format:fix": "lerna run lint:fix && prettier --write \"packages/**\"",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"clean": "lerna clean",
"test": "lerna run test",
"build": "lerna run build",
"bootstrap:ci": "yarn install --frozen-lockfile",
"new:version": "lerna version --no-push --no-git-tag-version",
"publish:all": "lerna publish from-package",
"prepublishOnly": "npm run build",
"update-dlcspecs-vectors": "./scripts/update-dlcspecs-vectors.sh"
},
"pre-commit": [
"lint"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"node-dlc",
"dlc",
"bitcoin"
],
"author": "Atomic Finance <info@atomic.finance>",
"license": "MIT",
"devDependencies": {
"@babel/runtime": "^7.28.6",
"@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": "18.11.9",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-exclude": "2.0.2",
"chai-http": "^5.1.2",
"chai-like": "1.1.1",
"chai-things": "0.2.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"lerna": "^8.0.0",
"mocha": "^11.7.5",
"nodemon": "^3.1.11",
"nyc": "^17.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"sinon": "^21.0.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"dependencies": {
"json-bigint": "^1.0.0"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"js-yaml": "^4.1.1",
"ansi-regex": "^5.0.1",
"form-data": "^4.0.0",
"request": "^2.88.2",
"front-matter": "^4.0.2",
"get-func-name": "^2.0.1",
"semver": "^7.0.0",
"qs": "^6.14.1",
"cross-spawn": "^7.0.6",
"braces": "^3.0.3",
"strip-bom": "^4.0.0",
"path-to-regexp": "^1.9.0",
"json-schema": "^0.4.0",
"tough-cookie": "^4.1.3",
"@babel/runtime": "^7.26.10",
"secp256k1": "^5.0.1",
"bitcoin-networks": "npm:bitcoin-network@0.1.0",
"sha.js": "^2.4.12"
}
}