-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "background-action",
"version": "1.0.5",
"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",
"clean": "rm -rf dist && rm *.err && rm *.out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JarvusInnovations/background-action.git"
},
"keywords": [
"GitHub",
"Actions",
"Background",
"Process",
"Command",
"Logging",
"wait-on"
],
"author": "Jeff Mealo <[email protected]>",
"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.1",
"parse-duration": "^1.1.0",
"tail": "2.1.1",
"wait-on": "^7.2.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"jest": "^29.7.0"
}
}