-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
{
"name": "dom-based-xss-finder",
"version": "1.0.0",
"description": "A Chrome extension for finding DOM based XSS vulnerabilities",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development DEBUG=dom-based-xss-finder:* webpack --watch",
"build": "NODE_ENV=production webpack",
"dist": "NODE_ENV=production webpack && node scripts/zip.js",
"test": "mocha test/**/test-*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AsaiKen/dom-based-xss-finder"
},
"keywords": [
"chrome",
"extension",
"xss"
],
"author": "Ken Asai",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.7"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@fortawesome/fontawesome-free": "^5.12.0",
"babel-loader": "^8.0.6",
"bootstrap": "^4.4.1",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"encoding-japanese": "^1.0.30",
"html-webpack-plugin": "^3.2.0",
"iconv-lite": "^0.5.0",
"jquery": "^3.4.1",
"mocha": "^6.2.2",
"popper.js": "^1.16.0",
"source-map": "^0.7.3",
"style-loader": "^1.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"zip-folder": "^1.0.0"
}
}