-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 969 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
{
"name": "rescript-cron",
"version": "1.1.1",
"scripts": {
"build": "rescript build -with-deps",
"start": "rescript build -with-deps -w",
"clean": "rescript clean",
"pretest": "npm run build",
"doc": "bs-odoc",
"test": "jest"
},
"keywords": [
"ReScript",
"cron",
"repeating"
],
"author": "mikaello",
"description": "Cron for NodeJS. Execute something at a schedule.",
"homepage": "https://mikaello.github.io/rescript-node-cron/",
"repository": "https://github.com/mikaello/rescript-node-cron",
"bugs": "https://github.com/mikaello/rescript-node-cron/issues",
"license": "MIT",
"devDependencies": {
"@glennsl/rescript-jest": "0.9.2",
"@ristostevcev/bs-odoc": "1.3.0",
"moment": "2.29.3",
"rescript": "9.1.4",
"rescript-jest-date-mock": "2.0.1"
},
"dependencies": {
"bs-moment": "0.6.0",
"cron": "1.8.2"
},
"jest": {
"setupFiles": [
"jest-date-mock"
]
}
}