forked from JarvusInnovations/background-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "background-action",
"version": "1.0.3",
"description": "Background processes: tail std(out|err), dedupe post-run lines. Monitor exit-code and file/port/socket/http(s) (un)readiness.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"build": "ncc build index.js -o dist --source-map",
"test": "jest",
"all": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JarvusInnovations/background-action.git"
},
"keywords": [
"GitHub",
"Actions",
"Background",
"Process",
"Command",
"Logging",
"wait-on"
],
"author": "Jeff Mealo <jeff.m@jarv.us>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JarvusInnovations/background-action/issues"
},
"homepage": "https://github.com/JarvusInnovations/background-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"parse-duration": "^0.4.4",
"tail": "^2.0.4",
"wait-on": "^6.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^7.10.0",
"jest": "^28.1.3"
}
}