-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "jest-ci-spec-reporter",
"version": "1.0.4",
"description": "Zero dependency Jest spec reporter with CI-friendly output",
"author": {
"name": "Robert Bradley"
},
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/index.js",
"keywords": [
"jest",
"spec",
"reporter"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint src/**/*.ts",
"test": "jest",
"precommit": "npm run lint && npm run test --bail"
},
"homepage": "https://github.com/robertbradleyux/jest-ci-spec-reporter#readme",
"bugs": {
"url": "https://github.com/robertbradleyux/jest-ci-spec-reporter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertbradleyux/jest-ci-spec-reporter.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.0",
"jest": "29.7.0",
"rimraf": "5.0.9",
"ts-node": "10.9.2",
"ts-jest": "29.2.2",
"typescript": "4.9.5"
}
}