-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 782 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 782 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
{
"name": "xss-scanner",
"version": "0.0.9",
"description": "Cross-Site Scripting (XSS) scanner. This tool helps to find possible XSS vulnerabilities.",
"keywords" : [ "xss", "xss-vulnerability", "xss-detection", "xss-exploitation", "xss-scanner" ],
"repository": {
"type": "git",
"url": "https://github.com/dragthor/xss-scanner.git"
},
"scripts": {
"start": "node src/payload.js",
"test" : "mocha --reporter progress \"tests/**/*.test.js\""
},
"author": "Kris Krause",
"license": "MIT",
"engines": {
"node" : ">=6.9.5",
"npm": ">=3.10.10"
},
"dependencies": {
"node-uuid": "1.4.7",
"chalk": "1.1.3"
},
"devDependencies": {
"node-uuid": "1.4.7",
"chalk": "1.1.3",
"chai": "3.5.0",
"mocha": "3.2.0"
}
}