-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"name": "cvebot",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,json,md}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["slack", "bot", "security", "vulnerability", "jvn", "cve", "notification"],
"author": "Common Creation, Co., Ltd.",
"license": "MIT",
"description": "Slack bot for monitoring and notifying security vulnerabilities from JVNDB RSS feed",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@slack/bolt": "^4.4.0",
"better-sqlite3": "^12.2.0",
"dotenv": "^17.2.0",
"node-cron": "^4.2.1",
"rss-parser": "^3.13.0",
"winston": "^3.17.0"
}
}