-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.45 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
65
66
67
68
69
70
71
72
{
"name": "@technote-space/gh-actions-template",
"version": "0.8.1",
"description": "Template for GitHub actions.",
"keywords": [
"github",
"github actions"
],
"homepage": "https://github.com/technote-space/gh-actions-template",
"bugs": {
"url": "https://github.com/technote-space/gh-actions-template/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/technote-space/gh-actions-template.git"
},
"license": "MIT",
"author": {
"name": "Technote",
"email": "[email protected]",
"url": "https://technote.space"
},
"files": [
"lib",
"action.yml"
],
"scripts": {
"build": "rm -rdf lib && rollup -c",
"cover": "vitest run --coverage",
"lint": "eslint 'src/**/*.ts' --cache",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"release": "yarn release-ga --test",
"setup": "if [[ $(uname -s) == 'Darwin' ]]; then BASH_ENV=~/.bashrc bash -O expand_aliases bin/setup.sh; else bash bin/setup.sh; fi && if [[ -f __DELETE__ ]]; then rm -rdf bin __DELETE__; fi",
"test": "yarn lint && yarn typecheck && yarn cover",
"typecheck": "tsc --noEmit",
"update": "npm_config_yes=true npx npm-check-updates -u --timeout 100000 && yarn install && yarn upgrade && yarn audit"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@octokit/openapi-types": "^14.0.0",
"@octokit/plugin-paginate-rest": "^5.0.1",
"@octokit/types": "^8.0.0",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@sindresorhus/tsconfig": "^3.0.1",
"@technote-space/filter-github-action": "^0.6.6",
"@technote-space/github-action-helper": "^5.3.10",
"@technote-space/github-action-log-helper": "^0.2.9",
"@technote-space/github-action-test-helper": "^0.11.1",
"@technote-space/release-github-actions-cli": "^1.9.3",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vitest/coverage-c8": "^0.25.3",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"nock": "^13.2.9",
"rollup": "^3.5.1",
"typescript": "^4.9.3",
"vitest": "^0.25.3"
},
"publishConfig": {
"access": "public"
}
}