-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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
{
"name": "gh-actions-pr-reviewstatus-labeler",
"version": "1.0.6",
"private": true,
"description": "Github Action to add/remove labels on Pull Request based on its review status",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run format && npm run lint && npm run package",
"test:git-dirty": "[[ -z $(git status -s) ]] || (echo 'Your git worktree is dirty. Please stash or remove.' && /usr/bin/false)",
"release": "yarn test:git-dirty && yarn standard-version",
"push": "git push origin :refs/tags/v1 && git tag -fa v1 -m v1 && git push --follow-tags origin master",
"pre-commit": "yarn all"
},
"husky": {
"hooks": {
"pre-commit": "yarn all && git add ."
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/amblerhq/gh-actions-pr-reviewstatus-labeler"
},
"keywords": [
"github",
"actions",
"review",
"label"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@types/node": "^14.14.25",
"@typescript-eslint/parser": "^4.14.2",
"@vercel/ncc": "^0.27.0",
"eslint": "^7.19.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"js-yaml": "^4.0.0",
"prettier": "2.2.1",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.0"
}
}