forked from CashScript/cashscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.57 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
{
"name": "root",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples"
],
"devDependencies": {
"@jest/reporters": "^26.6.2",
"@types/jest": "^29.4.0",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"cashproof": "https://github.com/eyeofpython/cashproof",
"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",
"lerna": "^3.22.1",
"ts-node": "^9.1.1",
"typescript": "^4.9.5"
},
"scripts": {
"test": "lerna run test --ignore cashscript-examples",
"lint": "lerna run lint --ignore cashscript-examples",
"preproof:opt": "cp packages/utils/src/cashproof-optimisations.ts opt.equiv && sed -i '' '/`/d' opt.equiv",
"proof:opt": "yarn cashproof opt.equiv",
"postproof:opt": "rm opt.equiv",
"proof:0.2.0": "yarn cashproof packages/cashc/test/cashproof/0.1.2=0.2.0.equiv",
"proof": "yarn proof:opt && yarn proof:0.2.0",
"cashproof": "python3 node_modules/cashproof/run.py",
"examples": "ts-node-esm examples/p2pkh.ts && ts-node-esm examples/transfer_with_timeout.ts && ts-node-esm examples/hodl_vault.ts",
"coverage": "codecov",
"postinstall": "lerna bootstrap && lerna run build --ignore cashscript-examples",
"spellcheck": "cspell lint '**' --no-progress --must-find-files",
"update-version": "ts-node-esm update-version.ts",
"publish-all": "lerna publish from-package"
}
}