-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "gh-actions-clubhouse-labeler",
"version": "1.2.4",
"private": true,
"description": "Github Action to sync labels between Clubhouse Story and its linked Pull Request",
"main": "lib/main.js",
"scripts": {
"prepare": "husky install",
"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 && yarn push",
"push": "git push origin :refs/tags/v1 && git tag -fa v1 -m v1 && git push --follow-tags origin master"
},
"husky": {
"hooks": {
"pre-commit": "yarn all && git add ."
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/amblerhq/gh-actions-clubhouse-labeler"
},
"keywords": [
"github",
"actions",
"review",
"label",
"clubhouse"
],
"author": "chabou",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"clubhouse-lib": "^0.10.0"
},
"devDependencies": {
"@octokit/webhooks": "^7.21.0",
"@types/node": "^14.14.9",
"@typescript-eslint/parser": "^4.14.1",
"@vercel/ncc": "^0.27.0",
"eslint": "^7.19.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^7.0.2",
"js-yaml": "^4.0.0",
"prettier": "2.2.1",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.0"
}
}