forked from selfagency/capture-output
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "capture-output",
"version": "1.0.9",
"description": "Capture the output (and duration) of a command as a GitHub Actions `output` or file",
"repository": {
"type": "git",
"url": "https://github.com/selfagency/capture-output.git"
},
"license": "MIT",
"author": "Daniel Sieradski <[email protected]>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project .",
"prepare": "husky install",
"start": "node dist/index.cjs",
"bundle": "rm -rf dist; esbuild src/action.ts --bundle --platform=node --target=node16 --outfile=dist/index.cjs",
"lint": "tsc --noEmit && eslint src/. && prettier --check src/.",
"lint-staged": "lint-staged --allow-empty"
},
"lint-staged": {
"*.{js,json,md,yml}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2"
},
"devDependencies": {
"@types/node": "^18.11.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"esbuild": "^0.15.11",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-yml": "^1.2.0",
"eslint-scope": "^7.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}