-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 862 Bytes
/
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
{
"name": "testem-failure-only-reporter",
"version": "1.0.0",
"description": "Testem reporter that only reports failures",
"repository": {
"type": "git",
"url": "[email protected]:emberjs/testem-failure-only-reporter.git"
},
"license": "MIT",
"main": "failure-only-reporter.js",
"scripts": {},
"dependencies": {
"testem": "^3.0.0"
},
"devDependencies": {
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": false
}
}
}