generated from MeilCli/action-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 3.53 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
{
"name": "common-lint-reporter",
"version": "1.0.0",
"description": "",
"main": "lib/src/main.js",
"scripts": {
"build": "tsc",
"pack": "webpack",
"test": "jest",
"test:data": "npm run test:data:eslint && npm run test:data:checkstyle && npm run test:data:junit",
"test:data:eslint": "npm run test:data:eslint:report -s || npm run test:data:eslint:replace",
"test:data:eslint:report": "eslint --config eslint.config.data.mjs --output-file data/eslint.json --format json data/source.ts",
"test:data:eslint:replace": "replace-in-files --regex \\\"[a-zA-Z0-9]+:?((\\\\\\\\|\\\\|\\/)[a-zA-Z0-9_\\-.]+)+\\\" --replacement \\\"filepath.txt\\\" data/eslint.json",
"test:data:checkstyle": "npm run test:data:checkstyle:report -s || npm run test:data:checkstyle:replace",
"test:data:checkstyle:report": "eslint --config eslint.config.data.mjs --output-file data/checkstyle.xml --format checkstyle data/source.ts",
"test:data:checkstyle:replace": "replace-in-files --regex \\\"[a-zA-Z0-9]+:?((\\\\\\\\|\\\\|\\/)[a-zA-Z0-9_\\-\\.]+)+\\\" --replacement \\\"filepath.txt\\\" data/checkstyle.xml",
"test:data:junit": "npm run test:data:junit:report -s || npm run test:data:junit:replace",
"test:data:junit:report": "eslint --config eslint.config.data.mjs --output-file data/junit_eslint.xml --format junit data/source.ts",
"test:data:junit:replace": "replace-in-files --regex \\\"[a-zA-Z0-9]+:?((\\\\\\\\|\\\\|\\/)[a-zA-Z0-9_\\-\\.]+)+\\\" --replacement \\\"filepath.txt\\\" data/junit_eslint.xml",
"lint": "eslint src/**/*.ts",
"lint:report": "eslint --output-file eslint_report.json --format json src/**/*.ts",
"codegen": "graphql-codegen --config codegen.yml"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"@apollo/client": "^3.12.4",
"cross-fetch": "^4.1.0",
"fast-xml-parser": "^4.5.1",
"graphql": "^16.10.0",
"he": "^1.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-document-nodes": "^4.0.12",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@graphql-codegen/typescript-resolvers": "^4.4.1",
"@octokit/graphql-schema": "^15.25.0",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-checkstyle": "^8.40.0",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-circus": "^29.6.4",
"prettier": "^3.4.2",
"react": "^18.3.1",
"replace-in-files-cli": "^3.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"jest": {
"clearMocks": true,
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"testRunner": "jest-circus/runner",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true
}
}