-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
{
"name": "test-summary",
"version": "2.5.0",
"private": true,
"description": "Display test results in a GitHub Actions workflow",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc && cp action.yml dist/",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript && cp action.yml dist/",
"test": "mocha -r ts-node/register --reporter mocha-multi-reporters --reporter-options configFile=test/config.json test/**/*.ts",
"clean": "rm -rf dist",
"all": "npm run build && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/test-summary/action.git"
},
"keywords": [
"actions",
"dashboard",
"test",
"summary",
"tap",
"junit",
"ci/cd"
],
"author": "Edward Thomson",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"glob": "^13.0.6",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/glob": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/xml2js": "^0.4.14",
"@vercel/ncc": "^0.38.4",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"eslint": "^9.39.4",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.15.2",
"jest": "^30.3.0",
"mocha": "^11.7.5",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"rollup": "^4.60.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3"
}
}