-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 957 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 957 Bytes
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
{
"name": "rescript-cron",
"version": "1.2.1",
"scripts": {
"build": "rescript build",
"start": "rescript watch",
"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.13.1",
"@ristostevcev/bs-odoc": "1.3.0",
"rescript": "12.2.0",
"rescript-jest-date-mock": "2.0.1"
},
"dependencies": {
"cron": "4.4.0"
},
"jest": {
"setupFiles": [
"jest-date-mock"
],
"testMatch": [
"**/__tests__/*_tests.bs.js"
]
}
}