This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "nunit-result",
"version": "1.1.0",
"private": true,
"description": "Action to add nunit tests results ",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MirageNet/nunit-reporter.git"
},
"keywords": [
"actions",
"nunit",
"test",
"report"
],
"author": "MirageNet",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.1",
"@actions/glob": "^0.1.0",
"@octokit/rest": "^17.1.4",
"@types/xml2js": "^0.4.5",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^5.12.1",
"@zeit/ncc": "^0.20.5",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^22.21.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"js-yaml": "^3.13.1",
"lint-staged": "^12.3.4",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^3.6.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}