-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "@bfchain/comproto",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "worker-thread",
"scripts": {
"up": "yarn upgrade-interactive --latest",
"mono": "bdk-mono ./",
"dev": "bdk-tsc --build -w",
"dev:all": "bdk-tsc --build tsconfig.all.json -w",
"bench": "node ./packages/test/build/cjs/benchmark.js",
"test": "node ./node_modules/ava/cli.js",
"test:debug": "ndb ./node_modules/ava/cli.js",
"format":"bdk-format",
"format:all":"bdk-format -m=all",
"publ": "lerna publish",
"publ:force": "lerna publish --force-publish",
"lsts": "bdk-lsts --path tsconfig.json",
"clear": "node ./script/rmBuild.js",
"build": "npm run clear & npm run build:cjs & npm run build:esm",
"build:cjs": "tsc",
"build:esm": "tsc -p tsconfig.esm.json"
},
"bdkMono": {
"generateConfigFiles": [
{
"packages": "*,-test_",
"type": "mergejson",
"from": "$ROOT_PROJECT/config/tsconfig_template/tsconfig.cjs.json",
"to": "$PACKAGE/tsconfig.json"
},
{
"packages": "*,-test,-demo,-test_*",
"type": "mergejson",
"from": "$ROOT_PROJECT/config/tsconfig_template/tsconfig.esm-es6.json",
"to": "$PACKAGE/tsconfig.esm-es6.json"
},
{
"packages": "*,-test,-demo,-test_*",
"type": "mergejson",
"from": "$ROOT_PROJECT/config/tsconfig_template/tsconfig.esm.json",
"to": "$PACKAGE/tsconfig.esm.json"
}
]
},
"keywords": [
"comproto"
],
"author": "chenjianwei",
"license": "ISC",
"files": [
"build/cjs",
"build/esm"
],
"devDependencies": {
"@bfchain/devkit": "^0.8.19",
"lerna": "3.22.1"
}
}