forked from yogeshlonkar/wait-for-jobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "wait-for-jobs",
"version": "0.0.0",
"private": true,
"description": "Wait for the specified jobs in the same run to complete successfully before proceeding",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist bin && ncc build --source-map --license licenses.txt -o dist src/index.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "vitest --coverage --run",
"all": "npm run build && npm run format && npm run lint && npm test"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yogeshlonkar/wait-for-jobs.git"
},
"keywords": [
"actions",
"wait",
"prestart",
"jobs",
"steps"
],
"author": "yogeshlonkar",
"license": "MIT",
"engines": {
"node": "20"
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.2",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@octokit/openapi-types": "^22.2.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^2.1.6",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"js-yaml": "^4.1.0",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"vitest": "^2.0.5"
}
}