-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage-json.hbs
81 lines (81 loc) · 2.55 KB
/
package-json.hbs
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
{
"author": "GitHub Inc.",
"files": {{{ json distPaths }}},
"type": {{#if esm}}"module"{{else}}{{{ del }}}{{/if}},
"scripts": {
{{#if eslint}}
"eslint": "eslint \"**/*.{{{ extGlob lintExtensions }}}\"",
"lint": "{{ localNpmPath }} run eslint {{~#if prettier}} && {{ localNpmPath }} run prettier -- --check{{/if}}",
"lintfix": "{{ localNpmPath }} run eslint -- --fix {{~#if prettier}} && {{ localNpmPath }} run prettier -- --write{{/if}}",
{{#if prettier}}
"prettier": "prettier \"**/*.{{{ extGlob formatExtensions }}}\"",
{{/if}}
{{else}}
"eslint": {{{ del }}},
"lint": "echo linting disabled",
"lintfix": {{{ del }}},
{{/if}}
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"snap": "{{#if typescript}}{{#if tap16}}c8 {{/if}}{{/if}}tap",
"test": "{{#if typescript}}{{#if tap16}}c8 {{/if}}{{/if}}tap",
"posttest": "{{ localNpmPath }} run lint",
{{#if isRootMono}}
"test-all": "{{ localNpmPath }} run test {{ allFlags }}",
"lint-all": "{{ localNpmPath }} run lint {{ allFlags }}",
{{/if}}
{{#if typescript}}
"prepare": "tshy",
{{/if}}
"template-copy": {{{ del }}},
"lint:fix": {{{ del }}},
"preversion": {{{ del }}},
"postversion": {{{ del }}},
"prepublishOnly": {{{ del }}},
"postpublish": {{{ del }}}
},
"repository": {{#if repository}}{{{ json repository }}}{{else}}{{{ del }}}{{/if}},
{{{ json __CONFIG_KEY__ }}}: {
"version": {{#if isDogFood}}{{{ del }}}{{else}}{{{ json __VERSION__ }}}{{/if}}
},
"templateVersion": {{{ del }}},
"standard": {{{ del }}},
"nyc": {{#if tap18}}{
"exclude": {{{ json workspaceGlobs }}}
}{{else}}{{{ del }}}{{/if}},
"tap": {
{{#if tap18}}
{{#if workspaceGlobs}}
"exclude": {{{ json workspaceGlobs }}},
{{/if}}
"test-ignore": {{{ del }}},
{{else}}
"exclude": {{{ del }}},
{{#if workspacePaths}}
"exclude": {{#if tap18}}[
"{{ json workspaceGlobs }}"
]{{else }}{{{ del }}}{{/if}},
"test-ignore": {{#if tap18}}{{{ del }}}{{else}}"^({{ join workspacePaths "|" }})/"{{/if}},
{{/if}}
{{/if}}
{{#if typescript}}
{{#if tap16}}
"coverage": false,
"node-arg": [
"--no-warnings",
"--loader",
"ts-node/esm"
],
{{/if}}
{{/if}}
"show-full-coverage": {{#if tap18}}true{{else}}{{{ del }}}{{/if}},
"nyc-arg": {{#if tap18}}{{{ del }}}{{else}}[
{{#each workspaceGlobs}}
"--exclude",
"{{ . }}",
{{/each}}
"--exclude",
"tap-snapshots/**"
]{{/if}}
}
}