forked from DenisPodgurskii/pentestkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.15 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 4.15 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "owasp-pentestkit-extension",
"version": "9.9.8",
"private": true,
"type": "module",
"description": "OWASP Penetration Testing Kit browser extension build workspace.",
"author": "Denis Podgurskii",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/DenisPodgurskii/pentestkit.git"
},
"homepage": "https://owasp.org/www-project-penetration-testing-kit/",
"bugs": {
"url": "https://github.com/DenisPodgurskii/pentestkit/issues"
},
"scripts": {
"build": "npm run build_src && npm run build_waf",
"deps:update": "npx npm-check-updates -u && npm install",
"build_src": "webpack --config misc/webpack.config.js && node ./script/build_src.js",
"build_waf": "node ./script/build_waf.js",
"build_pkg": "npm run build && node ./script/build_pkg.js --mode both && node ./script/build-crx.js --mode both && node ./script/build-xpi.js --mode both",
"build:npm": "../tasks/release/build-npm.sh",
"build:npm:release": "../tasks/release/build-npm.sh --publishable",
"build:pypi": "python3 ../ptk-agent/pypi/scripts/build_pypi_package.py --extension-input-dir dist --out-dir ../ptk-agent/pypi/.release/pypi",
"build:packages": "npm run build_pkg && npm run build:npm && npm run build:pypi",
"build_packages": "npm run build:packages",
"build_crx": "node ./script/build-crx.js",
"build_xpi": "node ./script/build-xpi.js",
"vendor:jspdf": "node ./script/vendor-jspdf.js",
"verify:remote-code": "node ./script/verify-remote-hosted-code.js",
"test:remote-code": "node --test test/remoteHostedCodePolicy.test.js",
"test:dnr": "node --test test/dnrHeaderOverrides.test.js && npm run test:dnr-browser",
"test:dnr-browser": "node --test test/integration/dnrHeaderOverrides.browser.test.mjs",
"test:analysis": "node --test ../pentestkit_tests/analysis/*.test.js",
"validate:modules": "node script/validateModules.mjs",
"fix:modules": "node script/fix-modules-taxonomy.mjs"
},
"resolutions": {},
"overrides": {
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
"basic-ftp": "^6.0.1",
"brace-expansion": "2.1.2",
"dompurify": "3.4.12",
"minimatch": "^9.0.7",
"lodash": "^4.18.0",
"lodash-es": "^4.18.0",
"picomatch": "^4.0.4",
"postcss": "8.5.12",
"qs": "^6.15.2",
"serialize-javascript": "^7.0.5",
"systeminformation": "^5.31.7",
"fast-uri": "3.1.4",
"form-data": "4.0.6",
"ip-address": "^10.2.0",
"undici": "6.27.0",
"uuid": "^14.0.0",
"tmp": "^0.2.6",
"js-cookie": "^3.0.7",
"@octokit/core": "^5.2.2",
"@octokit/graphql": "^7.1.1",
"@octokit/request": "^8.4.1",
"@octokit/request-error": "^5.1.1",
"@adobe/css-tools": "4.3.2",
"@octokit/plugin-paginate-rest": "9.2.2"
},
"dependencies": {
"@babel/core": "7.29.7",
"@babel/preset-env": "7.29.5",
"acorn": "8.15.0",
"acorn-walk": "8.3.4",
"adm-zip": "0.6.0",
"ajv": "^8.18.0",
"archiver": "7.0.1",
"babel-loader": "10.0.0",
"codemirror-minified": "5.65.9",
"copy-webpack-plugin": "13.0.1",
"crypto-es": "3.1.2",
"cypress": "^15.10.0",
"datatables.net": "2.3.7",
"dompurify": "3.4.12",
"fomantic-ui": "^2.9.4",
"fs-extra": "11.3.3",
"jose": "6.1.3",
"jose-browser-runtime": "5.10.0",
"jquery": "4.0.0",
"js-yaml": "^4.3.0",
"jspdf": "4.2.1",
"jspdf-autotable": "5.0.7",
"mermaid": "^11.15.0",
"npm-check-updates": "19.3.2",
"retire": "5.4.2",
"swagger-ui-dist": "^5.31.0",
"wappalyzer": "7.0.3",
"webextension-polyfill": "0.12.0",
"webpack": "5.105.0"
},
"devDependencies": {
"@playwright/test": "1.58.1",
"@types/node": "25.2.0",
"parse5": "^8.0.0",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"webpack-cli": "6.0.1"
}
}