-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 973 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "seneca-cron",
"version": "0.0.5",
"description": "Cron plugin for Seneca framework",
"main": "lib/cron.js",
"scripts": {
"test": "lab -v -P test -t 80",
"cover": "lab -s -P test -r lcov | coveralls",
"lint": "lab -P test -dL"
},
"repository": {
"type": "git",
"url": "git://github.com/mirceaalexandru/seneca-cron.git"
},
"keywords": [
"seneca",
"cron",
"plugin"
],
"author": {
"name": "Mircea Alexandru",
"email": "[email protected]",
"url": "http://www.alexandrumircea.ro"
},
"contributors": [
{
"name": "Adriean Khisbe",
"email": "[email protected]",
"url": "https://github.com/AdrieanKhisbe/"
}
],
"license": "BSD-3-Clause",
"dependencies": {
"cron": ">= 1.0.0",
"lodash": "^3.10.1",
"uuid": "~2.0.1"
},
"devDependencies": {
"code": "^2.0.1",
"seneca": ">= 0.9.0",
"coveralls": "^2.11.4",
"lab": "^8.0.0"
}
}