-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 866 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 866 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
32
33
34
35
36
{
"name": "patch-feed",
"version": "1.0.0",
"description": "A free patch monitoring dashboard that aggregates security updates from various vendors",
"private": true,
"type": "module",
"scripts": {
"start": "npx http-server . -p 8000 --cors",
"fetch-patches": "node scripts/fetch-patches.js",
"health-check": "node scripts/health-check.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Toreburn/patch-feed.git"
},
"keywords": [
"security",
"patches",
"monitoring",
"dashboard"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Toreburn/patch-feed/issues"
},
"homepage": "https://patchfeed.dev",
"devDependencies": {
"http-server": "^14.1.1"
},
"dependencies": {
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"node-fetch": "^3.3.0"
}
}