-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 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
{
"name": "natural-cron",
"version": "1.0.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "npm run clean:dist && npm run build:esm && npm run build:cjs && npm run build:web",
"clean:dist": "rm -rf dist/",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"build:web": "npx webpack --mode=production"
},
"author": "Satyajit Nayak",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/satyajitnayk/natural-cron"
},
"devDependencies": {
"@types/node": "^20.8.10",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"keywords": [
"natural-cron",
"cron",
"cron-validator",
"cron-expression",
"node-cron",
"task-scheduler",
"schedule",
"node-schedule",
"crontab",
"job-scheduler",
"time-scheduling"
]
}