-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "cyberchef-server",
"version": "1.1.0",
"description": "An application providing API access to CyberChef",
"author": "d98762625 <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/gchq/CyberChef-server",
"main": "index.mjs",
"type": "module",
"keywords": [
"cipher",
"cypher",
"encode",
"decode",
"encrypt",
"decrypt",
"base64",
"xor",
"charset",
"hex",
"encoding",
"format",
"cybersecurity",
"data manipulation",
"data analysis"
],
"scripts": {
"nodemon": "nodemon",
"start": "DEBUG=cyberchef-server:server node index.mjs",
"prod": "NODE_ENV=production node index.mjs",
"test": "mocha src/test",
"lint": "./node_modules/.bin/eslint --fix .",
"lint-test": "./node_modules/.bin/eslint .",
"postinstall": "npm install cyberchef --no-save --ignore-scripts && node ./postinstall.js"
},
"devDependencies": {
"eslint": "^9.0.0",
"mocha": "^10.0.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.19.2",
"helmet": "^8.0.0",
"pino-http": "^10.3.0",
"swagger-ui-express": "^5.0.1",
"yaml": "^2.5.0",
"terser": "^5.31.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gchq/CyberChef-server.git"
},
"bugs": {
"url": "https://github.com/gchq/CyberChef-server/issues"
}
}