-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.54 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@tunnckocore/opensource",
"homepage": "https://github.com/tunnckocore/opensource",
"private": true,
"workspaces": [
"web/*",
"configs/*",
"packages/*",
"@tunnckocore/*",
"@hela/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --since",
"bundle": "ROLLUP_FORCE_RELOAD=1 yarn start bundle",
"clean:dist": "rm -rf configs/*/dist packages/*/dist @tunnckocore/*/dist",
"clean:fresh": "lerna clean -y && rm -rf node_modules",
"cleanup": "yarn clean:dist && yarn clean:fresh",
"cmt": "LOCAL_TESTING=0 CI=1 yarn start test -u && yarn testy && git status --porcelain",
"cr": "node create-package.js",
"patch:hela": "cp patches/hela-cli/* node_modules/@hela/cli/dist/build/cjs/",
"patch:sade": "cp patches/sade/* node_modules/sade/lib/",
"patch:verb": "cp patches/verb-repo-helpers/index.js node_modules/verb-repo-helpers/index.js",
"postsetup": "yarn patch:verb && yarn patch:hela && yarn patch:sade",
"postsetup:ci": "yarn patch:verb && yarn patch:hela && yarn patch:sade",
"pre-commit": "echo nothing",
"refresh": "yarn cleanup && yarn setup",
"release": "lerna version && lerna publish from-package",
"setup": "yarn && yarn bootstrap",
"setup:ci": "yarn --frozen-lockfile && yarn bootstrap",
"start": "node node_modules/@hela/cli/dist/build/cjs/cli.js",
"test": "FORCE_COLOR=1 CI=1 LOCAL_TESTING=1 yarn start test",
"testy": "node generate-coverage-info.js && yarn start docs && yarn start format"
},
"dependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@hela/cli": "^3.0.0-alpha.91",
"@hela/dev": "*",
"@wessberg/rollup-plugin-ts": "^1.1.73",
"builtin-modules": "^3.1.0",
"cheerio": "^1.0.0-rc.3",
"enquirer": "^2.3.2",
"eslint": "^6.4.0",
"esm": "^3.2.25",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"react": "^16.10.1",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"semver": "^6.3.0",
"typescript": "^3.7.0-beta",
"verb": "verbose/verb#dev",
"verb-generate-readme": "^0.8.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"hela": {
"extends": "@hela/dev"
},
"husky": {
"hooks": {
"pre-commit": "yarn run pre-commit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"coveragePathIgnorePatterns": [
"babel.config.js",
"**/dist/**/*",
"**/test/support/**/*",
"**/test/__snapshots__/**/*"
]
},
"jestCov": {
"@hela/dev": 18.33,
"@tunnckocore/create-jest-runner": 18.08,
"@tunnckocore/execa": 86.01,
"@tunnckocore/jest-runner-babel": 8.93,
"@tunnckocore/jest-runner-eslint": 11.29,
"@tunnckocore/utils": 97.73,
"configs/babel-preset": 74.92,
"packages/gitclone-defaults": 100,
"packages/jest-runner-docs": 8.29,
"packages/jest-runner-rollup": 6.18,
"packages/koa-better-body": 95.56,
"packages/parse-function": 100,
"packages/stringify-github-short-url": 100
},
"meta": {
"build": [
"koa-better-body"
],
"bundle": [
"gitclone-defaults",
"stringify-github-short-url",
"parse-function"
]
},
"renovate": {
"extends": "@tunnckocore"
}
}