-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "cybersaucier",
"version": "1.0.2",
"description": "CyberSaucier is a wrapper around CyberChef to allow for programmatic use",
"homepage": "https://github.com/dbheise/cybersaucier",
"author": "David B Heise <david@heiseink.com> (https://dbheise.github.io)",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/dbheise/cybersaucier/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dbheise/cybersaucier.git"
},
"devDependencies": {
"eslint": "^9.0.0",
"mocha": "^10.0.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
},
"dependencies": {
"chalk": "^5.4.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.19.2",
"hapi": "^18.1.0",
"hapi-pino": "^12.1.0",
"helmet": "^8.0.0",
"inert": "^5.1.3",
"pino-http": "^10.3.0",
"simple-git": "^3.27.0",
"swagger-ui-express": "^5.0.1",
"terser": "^5.31.1",
"yaml": "^2.5.0"
},
"main": "main.mjs",
"scripts": {
"start": "node main.mjs",
"test": "node test.mjs",
"postinstall": "npm install cyberchef --no-save --ignore-scripts && node ./postinstall.js"
}
}