-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "keepalive-workflow",
"version": "2.0.8",
"description": "GitHub action to prevent GitHub from suspending your cronjob based trigger due to repository inactivity",
"main": "library.js",
"scripts": {
"build-github": "esbuild ./index.js --bundle --platform=node --outfile=dist/index.js",
"lint": "jshint --exclude='node_modules/' *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gautamkrishnar/keepalive-workflow.git"
},
"keywords": [
"github",
"workflow",
"keepalive",
"action"
],
"author": "Gautam krishna R <[email protected]> (https://www.github.com/gautamkrishnar)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gautamkrishnar/keepalive-workflow/issues"
},
"homepage": "https://github.com/gautamkrishnar/keepalive-workflow#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/rest": "^20.0.2"
},
"devDependencies": {
"esbuild": "^0.19.6",
"jshint": "^2.12.0"
},
"publishConfig": {
"public": true
}
}