-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "recron",
"version": "1.1.7",
"description": "Simple, intuitive and readable cron implementaiton",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -p .",
"clean": "tsc --build --clean",
"test": "c8 ava",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsdelf/recron.git"
},
"keywords": [
"cron",
"crontab",
"cronjob",
"periodic",
"interval",
"timer",
"timezone",
"typescript"
],
"author": "Yanhui Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/bsdelf/recron/issues"
},
"homepage": "https://github.com/bsdelf/recron#readme",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/js-combinatorics": "0.5.32",
"@types/node": "^22.8.2",
"@types/sinon": "^17.0.3",
"ava": "^6.2.0",
"c8": "^10.1.2",
"eslint": "^9.13.0",
"js-combinatorics": "0.5.5",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.1"
},
"dependencies": {
"cron-parser": "^4.9.0"
},
"ava": {
"failFast": true,
"verbose": true
}
}