forked from sunfit/jest-summary-reporter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "jest-compact-reporter",
"version": "1.2.9",
"description": "A more comapct reporter for Jest.",
"main": "./dist/index.js",
"types": "./dist/indes.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"build-prod": "tsc --project tsconfig.prod.json",
"declaration": "tsc --declaration --out index.d.ts",
"build-and-test": "npm run build && npm run test",
"prettier": "prettier --write .",
"prepublish": "npm run build-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fatton139/jest-compact-reporter.git"
},
"keywords": [
"jest",
"reporter",
"summary",
"minimal",
"compact"
],
"author": "Xinyi <xinyi.li13944@gmail.com>",
"contributors": [
"Konstantin <lebedev.k90@gmail.com>"
],
"license": "Unlicense",
"bugs": {
"url": "https://github.com/fatton139/jest-compact-reporter/issues"
},
"homepage": "https://github.com/fatton139/jest-compact-reporter#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"eslint": "^7.21.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"assert-never": "^1.2.1"
}
}