-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "guardrail-js",
"version": "1.0.2",
"description": "Intelligent security pipeline for Node.js applications",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:security": "jest security-tests/*",
"lint:security": "eslint . --config .eslintrc-security.json",
"security:full-scan": "npm run test:security && npm run lint:security && npm audit",
"security:report": "node scripts/generate-security-report.js"
},
"dependencies": {
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"guardrail-js": "file:",
"helmet": "^7.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.6.0",
"supertest": "^6.3.3"
},
"keywords": [
"security",
"nodejs",
"pipeline",
"testing",
"guardrail"
],
"author": "MEHDI BAFDIL",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mehdibafdil-dev/guardrail-js.git"
},
"bugs": {
"url": "https://github.com/mehdibafdil-dev/guardrail-js/issues"
},
"homepage": "https://github.com/mehdibafdil-dev/guardrail-js#readme"
}