-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 1.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mongodb-cron",
"version": "1.9.0",
"description": "MongoDB collection as crontab",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean && npx tsc",
"example": "npm run build && npx ts-node ./src/scripts/example.ts",
"lint": "npx tslint 'src/**/*.ts?(x)'",
"prepublish": "npm run build",
"test": "npm run lint && npx nyc npx hayspec test",
"speedtest": "npx ts-node ./src/scripts/speedtest.ts"
},
"hayspec": {
"require": [
"ts-node/register"
],
"match": [
"./src/tests/**/*.test.ts"
]
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"exclude": [
"src/tests"
]
},
"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"
],
"author": "Xpepermint (Kristijan Sedlak)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xpepermint/mongodb-cron/issues"
},
"homepage": "https://github.com/xpepermint/mongodb-cron#readme",
"peerDependencies": {
"mongodb": "^6.1.0"
},
"devDependencies": {
"@hayspec/cli": "0.10.2",
"@hayspec/spec": "0.10.2",
"@types/dot-object": "2.1.6",
"@types/node": "20.11.20",
"mongodb": "6.3.0",
"nyc": "15.1.0",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "4.7.4"
},
"dependencies": {
"cron-parser": "4.9.0",
"dot-object": "2.1.4",
"es6-sleep": "2.0.2",
"moment": "2.30.1"
}
}