-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1013 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples"
],
"devDependencies": {
"@jest/reporters": "^26.6.2",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"antlr4ts-cli": "^0.5.0-alpha.4",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"cspell": "^5.2.4",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts",
"examples": "ts-node examples/p2pkh.ts && ts-node examples/transfer_with_timeout.ts && ts-node examples/hodl_vault.ts",
"coverage": "codecov",
"postinstall": "lerna bootstrap && lerna run build --ignore cashscript-example",
"spellcheck": "cspell lint '**' --no-progress --must-find-files"
}
}