-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.47 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.47 KB
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
{
"name": "simplecron",
"version": "1.0.0",
"description": "Simple, flexible cron service for calling any HTTP endpoint",
"main": "index.js",
"type": "module",
"bin": {
"simplecron": "./index.js"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "node test.js",
"docker:build": "docker build -t simplecron .",
"docker:run": "docker run --env-file .env simplecron",
"docker:compose": "docker-compose up -d",
"docker:logs": "docker-compose logs -f",
"docker:stop": "docker-compose down"
},
"keywords": [
"cron",
"scheduler",
"http",
"api",
"automation",
"simple",
"endpoint",
"webhook",
"monitoring",
"health-check",
"retry",
"logging"
],
"author": {
"name": "SimpleCron Contributors"
},
"license": "MIT",
"homepage": "https://github.com/yourusername/simplecron#readme",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/simplecron.git"
},
"bugs": {
"url": "https://github.com/yourusername/simplecron/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"test.js",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"Dockerfile",
"docker-compose.yml",
".env.example"
],
"dependencies": {
"node-cron": "^3.0.3",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"winston": "^3.11.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}