-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 898 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 898 Bytes
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
{
"name": "pdf-xss-checker",
"version": "1.0.1",
"description": "A Node.js package to verify if PDFs contain XSS vulnerabilities",
"main": "src/index.js",
"bin": {
"pdf-xss-check": "./bin/cli.js"
},
"scripts": {
"test": "jest --testPathIgnorePatterns=test.js",
"lint": "eslint src/**/*.js",
"start": "node src/index.js",
"cli": "node bin/cli.js",
"demo": "node test.js"
},
"keywords": [
"pdf",
"security",
"xss",
"vulnerability",
"scanner"
],
"author": "DhanushNehru",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DhanushNehru/pdf-xss-scanner"
},
"dependencies": {
"pdf-parse": "^1.1.1",
"chalk": "^4.1.2",
"commander": "^9.4.1",
"ora": "^5.4.1"
},
"devDependencies": {
"jest": "^29.5.0",
"eslint": "^8.38.0"
},
"engines": {
"node": ">=14.0.0"
}
}