forked from ember-cli-code-coverage/ember-cli-code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.42 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
{
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:kategengler/ember-cli-code-coverage.git"
},
"workspaces": [
"packages/*",
"test-packages/*"
],
"scripts": {
"test": "mocha test-packages/*-test.js"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"execa": "^4.0.3",
"mocha": "^5.2.0",
"release-it": "^14.0.2",
"release-it-lerna-changelog": "^2.4.0",
"release-it-yarn-workspaces": "^1.5.0",
"rimraf": "^2.6.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"changelog": {
"repo": "kategengler/ember-cli-code-coverage",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"release-it-yarn-workspaces": {
"additionalManifests": {
"dependencyUpdates": [
"test-packages/*/package.json"
]
},
"publish": false,
"workspaces": [
"packages/*"
]
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
}
}