forked from Codex-/return-dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "return-dispatch",
"version": "1.10.0",
"private": true,
"description": "Dispatch an action and output the run ID.",
"main": "lib/main.js",
"scripts": {
"build:bundle": "npm run build:types && node ./esbuild.config.mjs",
"build:types": "tsc",
"format:check": "prettier --check **/*.ts",
"format:write": "npm run format:check -- --write",
"lint": "eslint --ext \".js,.ts\" .",
"lint:fix": "npm run lint -- --fix",
"release": "release-it",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codex-/return-dispatch.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Alex Miller",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.16.18",
"@types/uuid": "^9.0.2",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-istanbul": "^0.32.2",
"chalk": "^5.3.0",
"esbuild": "^0.18.10",
"eslint": "^8.43.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-github": "^4.8.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "2.8.8",
"release-it": "^15.11.0",
"typescript": "^5.1.6",
"vitest": "^0.32.2"
}
}