forked from Codex-/await-remote-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "await-remote-run",
"version": "1.3.0",
"private": true,
"description": "Await the result of a remote repository run.",
"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": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codex-/await-remote-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Alex Miller",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.7.0",
"@actions/github": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"@typescript-eslint/parser": "^5.21.0",
"chalk": "^5.0.1",
"esbuild": "^0.14.38",
"eslint": "^8.14.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"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",
"prettier": "2.6.2",
"release-it": "^15.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}