-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
71
{
"name": "jest-github-reporter",
"version": "1.1.1",
"description": "Report tests failures from Jest in GitHub",
"main": "dist/index.js",
"repository": "hipstersmoothie/jest-github-reporter",
"author": "Andrew Lisowski <lisowski54@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"test:example": "jest --testLocationInResults example/",
"release": "auto shipit"
},
"keywords": [
"jest",
"reporter",
"github",
"check",
"annotation"
],
"dependencies": {
"@octokit/rest": "^16.28.7",
"create-check": "^0.6.40",
"execa": "^1.0.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@types/execa": "^0.9.0",
"@types/node": "12.12.38",
"@typescript-eslint/eslint-plugin": "2.32.0",
"@typescript-eslint/parser": "2.32.0",
"auto": "^10.16.5",
"auto-config-hipstersmoothie": "^4.0.0",
"eslint": "7.0.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-xo": "0.29.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsdoc": "25.2.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.2",
"prettier": "2.0.5",
"typescript": "^4.1.5"
},
"peerDependencies": {
"jest": ">= 24.x"
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"jest": {
"testLocationInResults": true,
"reporters": [
"default",
"./dist/index.js"
]
},
"auto": {
"extends": "hipstersmoothie"
}
}