This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
forked from vbfox/jest-buildkite-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "@vital-software/jest-buildkite-reporter",
"version": "0.6.6",
"description": "Jest Buildkite reporter",
"main": "dist/index.js",
"repository": "https://github.com/vital-software/jest-buildkite-reporter",
"author": "Vital Engineering <[email protected]>",
"license": "MIT",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"directories": {
"lib": "dist"
},
"keywords": [
"buildkite",
"jest",
"ci"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"scripts": {
"build": "yarn tsc",
"test-success": "yarn build && yarn jest --config jest_success.config.js",
"test-failure": "yarn build && yarn jest --config jest_failure.config.js",
"test-no-tests": "yarn build && yarn jest --config jest_no_tests.config.js",
"test-no-tests-but-ok": "yarn build && yarn jest --passWithNoTests --config jest_no_tests_but_ok.config.js",
"prepublishOnly": "yarn build",
"preversion": "yarn build",
"postversion": "git push && git push --tags"
},
"dependencies": {
"buildkite-agent-node": "0.0.11-pre.2",
"humanize-duration-ts": "2.1.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@types/jest": "28.1.2",
"@types/lodash": "4.14.182",
"@types/node": "16.11.7",
"jest": "28.1.1",
"ts-jest": "28.0.5",
"typescript": "4.7.4"
},
"peerDependencies": {
"jest": "^28.0 || ^29.0"
}
}