-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "hapi-cron",
"version": "1.0.6",
"description": "A Hapi plugin to setup cron jobs that will call predefined server routes at specified times",
"main": "lib/index.js",
"scripts": {
"test": "npm run eslint && jest --runInBand",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/antonsamper/hapi-cron.git"
},
"keywords": [
"hapi",
"plugin",
"cron"
],
"author": "Anton Samper Rivaya",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/antonsamper/hapi-cron/issues"
},
"homepage": "https://github.com/antonsamper/hapi-cron#readme",
"devDependencies": {
"eslint": "^6.0.0",
"@hapi/eslint-config-hapi": "^12.1.0",
"@hapi/eslint-plugin-hapi": "^4.3.3",
"@hapi/hapi": "^18.3.1",
"jest": "^24.8.0"
},
"dependencies": {
"cron": "^1.7.1",
"@hapi/hoek": "^7.2.0"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
}
}