-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "cron-allowed-range",
"version": "0.0.43",
"description": "Use cron-like expressions to test if a datetime is in an allowed range.",
"main": "src/index.js",
"bin": {
"cr": "bin/cr.js"
},
"scripts": {
"deploy": "publish",
"test": "nyc --reporter=html --reporter=text mocha test/**/*.js",
"test:coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neverendingqs/cron-allowed-range.git"
},
"keywords": [
"cron",
"range"
],
"author": "neverendingqs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neverendingqs/cron-allowed-range/issues"
},
"homepage": "https://github.com/neverendingqs/cron-allowed-range#readme",
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"publish-me-maybe": "^1.0.11"
},
"dependencies": {
"moment": "^2.29.4",
"moment-timezone": "^0.5.34",
"yargs": "^17.5.1"
}
}