generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@hiberbee/github-actions",
"description": "Collection of common functions and helpers for GitHub Actions",
"version": "1.0.3",
"author": {
"name": "Vlad Volkov",
"email": "[email protected]",
"url": "https://github.com/VladyslavVolkov"
},
"maintainers": [
{
"name": "Vlad Volkov",
"email": "[email protected]",
"url": "https://github.com/VladyslavVolkov"
}
],
"readme": "README.md",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"prettier": "@bn-digital/prettier-config",
"eslintConfig": {
"extends": "@bn-digital/eslint-config/typescript"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn eslint --fix",
"yarn prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@bn-digital/eslint-config": "^2.0.30",
"@bn-digital/prettier-config": "^2.1.10",
"@bn-digital/typescript-config": "^1.1.1",
"@types/node": "^18.11.19",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
},
"scripts": {
"postinstall": "husky install",
"build": "tsc -p .",
"publish": "yarn build && yarn npm publish"
}
}