-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1 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
{
"name": "heroku-self-ping",
"version": "2.0.1",
"author": "Matthieu Bacconnier <[email protected]>",
"description": "Node.js script for keeping your Heroku application alive. Avoid time limit on your dyno.",
"bin": {},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test",
"build": "tsc",
"test": "NODE_ENV=test mocha --reporter spec --require ts-node/register test/**/*.ts --exit"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Neamar/heroku-self-ping"
},
"keywords": [
"anyfetch",
"hydrater",
"filecleaner"
],
"license": "MIT",
"dependencies": {
"is-heroku": "^2.0.0",
"superagent": "^5.2.2"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"@types/superagent": "^4.1.7",
"mocha": "~7.1.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"licence": "MIT",
"engines": {
"node": ">=8.0.0"
}
}