forked from xpepermint/mongodb-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.4 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
55
56
57
58
59
60
61
62
63
64
{
"name": "mongodb-cron",
"version": "0.7.1",
"description": "MongoDB collection as crontab",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -Rf ./dist",
"prebuild": "npm run clean; mkdir -p ./dist",
"build": "babel ./src --out-dir ./dist --copy-files",
"example": "babel-node ./example",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "ava",
"speedtest": "babel-node ./speedtest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpepermint/mongodb-cron.git"
},
"keywords": [
"mongo",
"mongodb",
"database",
"nosql",
"cron",
"schedule",
"scheduling",
"queue",
"job",
"jobs",
"collection",
"collections",
"capped"
],
"ava": {
"files": [
"./tests/*.js",
"./tests/**/*.js"
],
"concurrency": 1,
"failFast": true
},
"author": "Xpepermint (Kristijan Sedlak)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xpepermint/mongodb-cron/issues"
},
"homepage": "https://github.com/xpepermint/mongodb-cron#readme",
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-preset-node5": "^12.0.1",
"mongodb": "^2.2.26"
},
"peerDependencies": {
"mongodb": "^2.2.26"
},
"dependencies": {
"dot-object": "^1.5.4",
"es6-sleep": "^2.0.2",
"later": "^1.2.0",
"moment": "^2.18.1"
}
}