-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 855 Bytes
/
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
{
"name": "cron-labeler",
"version": "0.2.0",
"description": "An action for automatically labelling pull requests from forked repositories using a rate limit aware cron job.",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts"
},
"keywords": [],
"author": "Filip Jeremic",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/github": "^2.1.1",
"@octokit/rest": "^16.43.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@types/minimatch": "^3.0.0",
"@types/js-yaml": "^3.12.1",
"@zeit/ncc": "^0.21.1",
"prettier": "^1.17.1",
"typescript": "^3.5.1"
}
}