-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 849 Bytes
/
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
{
"name": "checksec-js",
"version": "1.0.0",
"description": "Check various security hardening features on ELF, PE and Mach-O binaries",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tresorit/checksec-js.git"
},
"keywords": [
"checksec",
"elf",
"pe",
"macho",
"hardening",
"binary",
"relro",
"pie",
"aslr",
"rpath",
"runpath",
"stack protector",
"canary"
],
"author": "Tamas Koczka <koczka@tresorit.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tresorit/checksec-js/issues"
},
"homepage": "https://github.com/tresorit/checksec-js#readme",
"dependencies": {
"kaitai-struct": "^0.8.0-SNAPSHOT.2"
}
}