-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "@ronomon/pure",
"version": "1.0.4",
"description": "Checks zip files for zip bombs, dangerous compression ratios, spec deviations, malicious archive signatures, mismatching local and central directory headers, ambiguous UTF-8 filenames, directory and symlink traversals, invalid MS-DOS dates, overlapping headers, overflow, underflow, sparseness, accidental buffer bleeds etc.",
"main": "binding.node",
"files": [
"AUTHORS",
"binding.c",
"binding.gyp",
"make-errors.js",
"make-signatures.js",
"make-tests.js",
"pure",
"pure.h",
"pure_constants.h",
"pure_errors.h",
"pure_routines.h",
"pure_signatures.h",
"test.js",
"zlib/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ronomon/pure.git"
},
"keywords": [],
"author": "Joran Dirk Greef",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronomon/pure/issues"
},
"homepage": "https://github.com/ronomon/pure#readme",
"scripts": {
"prepublishOnly": "rm -f binding.node",
"postinstall": "node-gyp clean",
"test": "node test.js"
}
}