-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "jest-buildkite-reporter",
"version": "0.2.8",
"description": "Jest Buildkite reporter",
"main": "dist/index.js",
"repository": "https://github.com/vbfox/jest-buildkite-reporter",
"author": "Julien Roncaglia <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.1",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"typescript": "^3.7.2"
},
"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"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"directories": {
"lib": "dist"
},
"keywords": [
"buildkite",
"jest",
"ci"
],
"peerDependencies": {
"jest": "^24.0 || ^25.0 || ^26.0"
},
"dependencies": {
"buildkite-agent-node": "^0.0.11-pre.1",
"humanize-duration-ts": "^2.0.0",
"lodash": "^4.17.15"
}
}