-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.86 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.86 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "modsecurity",
"version": "0.0.3",
"description": "ModSecurity connector for Node.js",
"main": "index.cjs",
"module": "index.mjs",
"exports": {
".": {
"require": {
"default": "./index.cjs",
"types": "./index.d.cts"
},
"import": {
"default": "./index.mjs",
"types": "./index.d.mts"
}
}
},
"types": "index.d.cts",
"scripts": {
"build": "node-gyp rebuild",
"build:dev": "node-gyp build --debug",
"build:coverage": "CXXFLAGS='-Og --coverage -fprofile-abs-path' LDFLAGS='--coverage' npm run build",
"test": "node --expose-gc --test",
"install": "node-gyp rebuild"
},
"keywords": [
"modsecurity",
"security",
"waf",
"firewall"
],
"author": "Volodymyr Kolesnykov <volodymyr@wildwolf.name> (https://wildwolf.name/)",
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"express": "^5.0.0",
"supertest": "^7.0.0"
},
"binary": {
"napi_versions": [
6
]
},
"engines": {
"node": "^10.20.0 || ^12.17.0 || >=14.0.0"
},
"files": [
"binding.gyp",
"index.cjs",
"index.d.cts",
"index.d.mts",
"index.mjs",
"src/engine.cpp",
"src/engine.h",
"src/intervention.cpp",
"src/intervention.h",
"src/main.cpp",
"src/rules.cpp",
"src/rules.h",
"src/transaction.cpp",
"src/transaction.h"
],
"gypfile": true,
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/sjinks/node-modsecurity.git"
},
"bugs": {
"url": "https://github.com/sjinks/node-modsecurity/issues"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.com/donate/?hosted_button_id=SAG6877JDJ3KU"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}