-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 759 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 759 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
{
"name": "cron-time-generator",
"version": "2.0.3",
"description": "Cron Time Expression Generator",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/trapcodeio/cron-time.git",
"author": "trapcodeio",
"scripts": {
"test": "npm run build && node ./dist/test.js",
"bun:test": "bun run test.ts",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"watch": "tsc --watch"
},
"license": "MIT",
"private": false,
"keywords": [
"cron-time",
"cron",
"cron-parser",
"node-cron"
],
"devDependencies": {
"@types/node": "^20.4.2",
"cron-validator": "^1.3.1",
"japa": "^4.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}