-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "jest-report-action",
"version": "2.3.3",
"author": "",
"description": "Parse junit output from jest-junit reporter and display test annotations",
"main": "dist/index.js",
"scripts": {
"preversion": "make build_and_stage",
"build": "parcel",
"build:minified": "npm run build -- build index.js --target node --bundle-node-modules --no-source-maps",
"build:unminified": "npm run build:minified -- --no-minify",
"lint": "eslint",
"lint:code": "npm run lint -- *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgnusG/jest-report-action.git"
},
"keywords": [
"github",
"actions",
"jest",
"tests"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/IgnusG/jest-report-action/issues"
},
"homepage": "https://github.com/IgnusG/jest-report-action#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"@babel/parser": "^7.9.4",
"@babel/traverse": "^7.9.0",
"@babel/types": "^7.9.0",
"escape-string-regexp": "^2.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^6.8.0",
"esm": "^3.2.25",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"parcel-bundler": "^1.12.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "npm run lint -- --cache --fix"
}
}