-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
57 lines (57 loc) · 1.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
{
"name": "test-summary",
"version": "0.0.1",
"private": true,
"description": "Display test results in a GitHub Actions workflow",
"main": "bin/index.js",
"scripts": {
"build": "tsc && cp action.yml bin/",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "npm run build && ncc build",
"test": "mocha -r ts-node/register --reporter mocha-multi-reporters --reporter-options configFile=test/config.json test/**/*.ts",
"clean": "rm -rf bin 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": "^1.10.0",
"glob": "^8.1.0",
"glob-promise": "^6.0.2",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/xml2js": "^0.4.11",
"@vercel/ncc": "^0.36.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.32.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.0",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi-reporters": "^1.5.1",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}