-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
98 lines (98 loc) · 2.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cron-schedule",
"description": "A zero-dependency cron parser and scheduler for Node.js, Deno and the browser.",
"version": "0.0.0-semantically-released",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/P4sca1/cron-schedule.git"
},
"author": "P4sca1 <sthamer.pascal@gmail.com>",
"contributors": [
"buffcode <l.stoetzel@meeva.de>",
"Shogun <josua.riha@posteo.de>"
],
"keywords": [
"cron",
"schedule",
"typescript",
"job parser",
"interval",
"iterator",
"deno",
"javascript",
"timer",
"cron-schedule",
"cron-expression",
"schedule-tasks",
"nodejs"
],
"type": "module",
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
"engines": {
"node": ">=18"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./schedulers/interval-based.js": {
"types": "./dist/schedulers/interval-based.d.ts",
"default": "./dist/schedulers/interval-based.js"
},
"./schedulers/timer-based.js": {
"types": "./dist/schedulers/timer-based.d.ts",
"default": "./dist/schedulers/timer-based.js"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"release": {
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
],
"preset": "angular",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
"dist/*.js"
]
}
]
]
},
"scripts": {
"build": "rimraf ./dist && pnpm run tsc:build",
"tsc:build": "tsc --project ./tsconfig.json",
"tsc:check": "tsc --project ./tsconfig.json --noEmit",
"tsc:watch": "tsc --project ./tsconfig.json --noEmit --watch",
"check": "biome check .",
"test": "vitest",
"test:run": "vitest run",
"test:ci": "vitest run --reporter=junit --outputFile=./test-report.xml && pnpm biome ci .",
"prepack": "pnpm run build"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "20.14.13",
"rimraf": "6.0.1",
"semantic-release": "24.0.0",
"typescript": "5.5.4",
"vitest": "2.0.4"
}
}