-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.45 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "parallels-desktop-devops-action",
"description": "GitHub Action to run Parallels Desktop VMs in your CI/CD pipeline",
"version": "0.3.3",
"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 \"s/export const AMPLITUDE_API_KEY = ''/export const AMPLITUDE_API_KEY = '$AMPLITUDE_API_KEY'/g\" ./src/telemetry/telemetry.ts",
"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/.eslintrc.yml",
"super-linter": "",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"lint:standard": "ts-standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin --project tsconfig.eslint.json",
"test": "(jest && make-coverage-badge --output-path ./badges/coverage.svg) || make-coverage-badge --output-path ./badges/coverage.svg",
"all": "npm run format:write && npm run lint && npm run test && npm run package"
},
"license": "fair.io",
"eslintConfig": {
"extends": "./.github/linters/.eslintrc.yml"
},
"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": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.3",
"@actions/tool-cache": "^2.0.1",
"@amplitude/analytics-node": "^1.3.6",
"axios": "^1.7.9",
"fast-xml-parser": "^4.5.1",
"jsdom": "^25.0.1",
"lodash": "^4.17.21",
"string-pixel-width": "^1.11.0",
"textlint-filter-rule-allowlist": "^4.0.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@types/axios": "^0.14.4",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@types/string-pixel-width": "^1.10.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vercel/ncc": "^0.38.3",
"babel-preset-jest": "^29.6.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"uglify-js": "^3.19.3"
}
}