forked from technote-space/assign-author
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"name": "@technote-space/assign-author",
"version": "1.5.6",
"description": "GitHub actions to assign author to issue or PR.",
"keywords": [
"github",
"github actions",
"assignees"
],
"homepage": "https://github.com/technote-space/assign-author",
"bugs": {
"url": "https://github.com/technote-space/assign-author/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/technote-space/assign-author.git"
},
"license": "MIT",
"author": {
"name": "Technote",
"email": "technote.space@gmail.com",
"url": "https://technote.space"
},
"files": [
"lib",
"action.yml"
],
"scripts": {
"build": "tsc",
"cover": "jest --coverage",
"lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts' --cache",
"lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'",
"release": "yarn release-ga --test",
"test": "yarn lint && yarn cover",
"update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@technote-space/filter-github-action": "^0.5.9",
"@technote-space/github-action-helper": "^4.4.4",
"@technote-space/github-action-log-helper": "^0.1.9"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@technote-space/github-action-test-helper": "^0.6.5",
"@technote-space/release-github-actions-cli": "^1.7.3",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.3",
"nock": "^13.0.5",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"publishConfig": {
"access": "public"
}
}