-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "sails-hook-cron",
"version": "3.2.0",
"description": "Sails hook for running tasks by cron",
"license": "MIT",
"main": "src/index.js",
"author": {
"email": "[email protected]",
"name": "Eugene Obrezkov",
"url": "https://ghaiklor.com"
},
"sails": {
"isHook": true
},
"scripts": {
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublishOnly": "npm run lint && npm run test",
"test": "istanbul cover _mocha",
"lint": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/sails-hook-cron.git"
},
"keywords": [
"sails",
"hook",
"cron"
],
"bugs": {
"url": "https://github.com/ghaiklor/sails-hook-cron/issues"
},
"homepage": "https://github.com/ghaiklor/sails-hook-cron#readme",
"files": [
"src"
],
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.3.1",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"istanbul": "0.4.5",
"mocha": "10.0.0",
"sails": "1.5.11",
"sinon": "9.0.2"
},
"dependencies": {
"cron": "1.8.2"
}
}