-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.13 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "gitlab-var-helper",
"description": "Batch set gitlab CI/CD variables with toml file",
"private": true,
"devDependencies": {
"@commitlint/cli": "8",
"@types/mocha": "5",
"@types/node": "12",
"@types/power-assert": "1",
"@types/rewire": "2",
"@types/rimraf": "2",
"@types/yargs": "13",
"@waiting/eslint-config": "2",
"coveralls": "3",
"debug": "^4.1.0",
"eslint": "6",
"espower-typescript": "9",
"intelli-espower-loader": "1",
"lerna": "3",
"mocha": "6",
"mocha-lcov-reporter": "1",
"nyc": "14",
"power-assert": "1",
"rewire": "4",
"rimraf": "3",
"rollup": "1",
"rollup-plugin-commonjs": "10",
"rollup-plugin-node-resolve": "5",
"rollup-plugin-terser": "5",
"rxrunscript": "5",
"ts-node": "8",
"typescript": "3",
"yargs": "15"
},
"scripts": {
"bp:add": "git remote add bp https://github.com/waitingsong/npm-mono-base",
"bp:sync": "git fetch --all -v && git merge bp/master -m \"Merge remote-tracking branch 'bp/master'\"",
"bootstrap": "lerna bootstrap",
"build": "sh .scripts/build.sh",
"ci": "npm run build && npm run cov",
"clean": "lerna clean --yes && lerna run clean && rm -rf ./packages/**/package-lock.json",
"cov": "lerna run cov --concurrency=1",
"doc": "node .githooks/doc.js",
"lint": "lerna run lint",
"lint:nofix": "lerna run lint:nofix",
"purge": "npm run clean && rm -rf node_modules",
"publish": "npm run clean && npm run bootstrap && sh .scripts/publish.sh",
"repo:init": "sh .githooks/init-repo.sh && sh .scripts/build.sh",
"reset": "npm run purge && npm i && npm run ci",
"test": "lerna run test"
},
"nyc": {
"include": [
"packages/*/src/*.ts",
"packages/*/src/**/*.ts"
],
"exclude": [
".githooks",
"node_modules*",
"**/src/bin",
"**/src/domain.ts",
"**/src/interface.ts",
"**/dist",
"**/node_modules*",
"**/test",
"**/test*",
"**/*.d.ts",
"**/*.js"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html"
],
"all": true
}
}