-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
102 lines (102 loc) · 3.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@check-run-reporter/cli",
"version": "0.0.0-development",
"description": "A GitHub action for uploading structured test reports to > [check-run-reporter.com](https://www.check-run-reporter.com).",
"bin": {
"crr": "./dist/ncc/index.js"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"engines": {
"node": "20.x"
},
"scripts": {
"build": "if command -v gmake 2>/dev/null; then gmake all; else make all; fi",
"build:types": "tsc --emitDeclarationOnly",
"eslint": "eslint ${ESLINT_FORMAT_OPTIONS:-} --ignore-path .gitignore",
"lint": "npm-run-all --continue-on-error --parallel lint:*",
"lint:changelog": "commitlint --from origin/main --to HEAD",
"lint:es": "npm run --silent eslint -- .",
"prelint:types": "mkdirp reports/style",
"lint:types": "bash -c \"tsc --noEmit $TSC_OPTIONS\" ",
"test": "TZ=UTC jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/check-run-reporter/integrations.git"
},
"keywords": [],
"author": "Ian Remmel, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/check-run-reporter/integrations/issues"
},
"homepage": "https://www.check-run-reporter.com",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@ianwremmel/eslint-plugin-ianwremmel": "^4.4.0",
"@semantic-release/exec": "^6.0.3",
"@types/glob": "^7.1.4",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.178",
"@types/nock": "^11.1.0",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.38.1",
"babel-jest": "^27.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.0",
"markdown-toc": "^1.2.0",
"memfs": "^3.3.0",
"nock": "^13.1.3",
"npm-run-all": "^4.1.5",
"pkg": "^5.8.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^23.0.0",
"semver": "^7.3.5",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.js": "npm run eslint -- ",
"*.ts": "npm run eslint -- "
},
"dependencies": {
"axios": "^0.24.0",
"axios-debug-log": "^0.8.4",
"axios-retry": "^3.1.9",
"ci-info": "^4.0.0",
"form-data": "^4.0.0",
"glob": "^7.2.0",
"lodash": "^4.17.21",
"yargs": "^17.1.1"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"integrations/action"
]
}