-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 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
{
"name": "root",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples",
"examples/testing-suite"
],
"devDependencies": {
"@jest/reporters": "^26.6.2",
"@types/jest": "^29.4.0",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"cspell": "^5.2.4",
"eslint": "^8.54.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"lerna": "^3.22.1",
"tsx": "^4.7.2",
"typescript": "^5.5.4"
},
"scripts": {
"test": "lerna run test --ignore cashscript-examples --ignore testing-suite",
"lint": "lerna run lint --ignore cashscript-examples --ignore testing-suite",
"examples": "tsx examples/p2pkh.ts && tsx examples/transfer_with_timeout.ts && tsx examples/hodl_vault.ts",
"coverage": "codecov",
"postinstall": "lerna bootstrap && yarn build",
"spellcheck": "cspell lint '**' --no-progress --must-find-files",
"update-version": "tsx update-version.ts",
"publish-all": "lerna publish from-package",
"build": "lerna run build --ignore cashscript-examples --ignore testing-suite"
}
}