-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 892 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
40
{
"name": "cron-toolkit-ts",
"version": "0.3.1",
"description": "Type-safe Toolkit to get cron expressions for JavaScript and TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc",
"publish": "npm publish --access public"
},
"keywords": [
"cron",
"cronjob",
"cron-job",
"cron job",
"cron-ts"
],
"files": [
"dist",
"license",
"readme.md"
],
"author": "Omar Khairy",
"homepage": "https://github.com/omarkhairy21/cron-ts",
"repository": {
"type": "git",
"url": "https://github.com/omarkhairy21/cron-ts.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.4",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}