-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "typescript-action",
"version": "1.0.2",
"private": true,
"description": "Get GitHub Action registration token for self-hosted runners",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts && prettier --write **/**/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"coverage": "jest --coverage",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roncsak/check.git"
},
"keywords": [
"github",
"actions",
"self-hosted",
"runner",
"CI/CD"
],
"author": "roncsak",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.7.0",
"@actions/github": "^5.0.1",
"@octokit/webhooks-definitions": "^3.67.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.11.27",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/parser": "^5.21.0",
"@vercel/ncc": "^0.33.4",
"eslint": "^8.14.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
}
}