forked from pulsecron/pulse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.45 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
99
{
"name": "@lytesoft/pulse",
"version": "1.7.0",
"description": "The modern MongoDB-powered job scheduler library for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"release": "npm run build && semantic-release",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build",
"dry-run": "npm publish --dry-run",
"build": "tsc",
"test": "jest --detectOpenHandles --forceExit",
"test:debug": "DEBUG=pulse:** jest",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"config": {
"blanket": {
"pattern": "src",
"data-cover-never": "node_modules"
}
},
"repository": {
"type": "git",
"url": "https://github.com/lytesoft/pulse"
},
"keywords": [
"job",
"jobs",
"cron",
"cronjob",
"mongodb",
"scheduling",
"mongodb",
"mongodb-scheduler",
"queue",
"delayed",
"scheduler",
"pulse",
"bull",
"bee",
"kue"
],
"author": "code-xhyun <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pulsecron/pulse/issues"
},
"dependencies": {
"cron-parser": "^4.9.0",
"date.js": "~0.3.3",
"debug": "~4.3.4",
"human-interval": "~2.0.1",
"moment-timezone": "^0.5.45"
},
"peerDependencies": {
"mongodb": "^5.9.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/debug": "^4.1.12",
"@types/human-interval": "^1.0.2",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"delay": "6.0.0",
"eslint": "^8.56.0",
"jest-junit": "^16.0.0",
"mongodb-memory-server": "^9.1.8",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.4"
},
"directories": {
"doc": "docs",
"example": "examples"
}
}