-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.74 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "parallels-desktop-devops-action",
"description": "GitHub Action to run Parallels Desktop VMs in your CI/CD pipeline",
"version": "0.3.4",
"author": "Carlos Lapao",
"private": true,
"homepage": "https://github.com/cjlapao/cobertura-xml-badge-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cjlapao/cobertura-xml-badge-generator.git"
},
"bugs": {
"url": "https://github.com/cjlapao/cobertura-xml-badge-generator/issues"
},
"keywords": [
"GitHub",
"Actions",
"Cobertura",
"Coverage",
"Badge",
"JavaScript"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run insert-key && npm run format:write && npm run package && npm run uglyfy",
"insert-key": "sed -i.bak \"s/export const AMPLITUDE_API_KEY = ''/export const AMPLITUDE_API_KEY = '$AMPLITUDE_API_KEY'/g\" ./src/telemetry/telemetry.ts && rm ./src/telemetry/telemetry.ts.bak",
"uglyfy": "uglifyjs ./dist/index.js -o ./dist/index.js",
"ci-test": "jest --runInBand",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "npx eslint . -c ./.github/linters/eslint.config.mjs",
"super-linter": "",
"package": "tsup && generate-license-file --input package.json --output dist/licenses.txt --overwrite",
"package:watch": "tsup --watch",
"lint:standard": "ts-standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --project tsconfig.eslint.json",
"test": "jest && node scripts/generate-coverage-badge.js",
"all": "npm run format:write && npm run lint && npm run test && npm run package"
},
"license": "fair.io",
"eslintConfig": {
"extends": "./.github/linters/eslint.config.mjs"
},
"jest": {
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.1",
"@actions/tool-cache": "^4.0.0",
"@amplitude/analytics-node": "^1.5.60",
"axios": "^1.18.0",
"fast-xml-parser": "^5.9.3",
"jsdom": "^29.1.1",
"lodash": "^4.18.1",
"string-pixel-width": "^1.11.0",
"textlint-filter-rule-allowlist": "^4.0.0",
"uuid": "^14.0.1"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/axios": "^0.14.4",
"@types/jest": "^30.0.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.9.3",
"@types/string-pixel-width": "^1.11.0",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.41.0",
"@vercel/ncc": "^0.44.0",
"babel-preset-jest": "^30.4.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.6",
"generate-license-file": "^4.2.1",
"globals": "^17.6.0",
"jest": "^30.4.2",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.8.4",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^6.0.3",
"uglify-js": "^3.19.3"
},
"overrides": {
"diff": "8.0.3",
"undici": "7.18.2",
"glob": "10.5.0",
"test-exclude": {
"glob": "7.2.3"
}
}
}