-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "job-stash",
"version": "1.1.5",
"description": "Date based scheduler for Node.js that can persist jobs",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build-dist": "tsc && cpx \"src/*.config.json\" \"dist/src\" && cpx \"package.json\" \"dist\" && cpx \".npmignore\" \"dist\" && cpx \"README.md\" \"dist\"",
"publish-dist": "cd dist && npm publish && cd ..",
"build-publish": "npm run build-dist && npm run publish-dist"
},
"keywords": [
"schedule",
"in-memory",
"persistant",
"mongodb",
"date",
"scheduler",
"node scheduler"
],
"repository": {
"type": "git",
"url": "git://github.com/hrithwikbharadwaj/job-stash"
},
"author": {
"name": "Hrithwik Bharadwaj",
"email": "hrithwik009@gmail.com",
"url": "https://hrithwik.dev"
},
"license": "MIT",
"dependencies": {
"mongodb": "^6.1.0"
},
"devDependencies": {
"@types/node": "^20.8.2",
"cpx": "^1.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}