-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
56 lines (56 loc) · 1.88 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
{
"name": "jest-coverage-report-action",
"private": true,
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"packageManager": "[email protected]",
"scripts": {
"test": "jest",
"test:log-coverage": "jest --coverage",
"test:coverage": "jest --silent --testLocationInResults --ci --all --coverage --json --outputFile=\"report.json\"",
"test:watch": "jest --watch",
"build": "tsc --noEmit --incremental && node esbuild.cjs",
"build:dev": "node esbuild.cjs",
"lint": "eslint ."
},
"keywords": [],
"author": "Artiom Tretjakovas <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.3",
"@actions/http-client": "^2.0.1",
"@octokit/request-error": "^2.1.0",
"fs-extra": "^10.0.0",
"markdown-table": "^2.0.0",
"micromatch": "^4.0.4",
"parse-diff": "^0.9.0",
"semver": "^7.3.5",
"strip-ansi": "^6.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/babel__traverse": "^7.14.2",
"@types/fs-extra": "^9.0.11",
"@types/istanbul-lib-coverage": "^2.0.4",
"@types/jest": "^27.0.2",
"@types/markdown-table": "^2.0.0",
"@types/micromatch": "^4.0.2",
"@types/node": "^14.14.20",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"c12": "^0.2.13",
"esbuild": "^0.12.24",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.2.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.5",
"typescript": "^4.1.3"
}
}