-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1021 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
{
"name": "magic-web-string-parser",
"version": "1.5.11",
"description": "A hacky pentest lib to recursively map any property encoded in a string, change theirs values, and re-encode keeping the original encoding structure.",
"main": "dist/mwsp.js",
"repository": "https://github.com/n8tz/magic-web-string-parser",
"scripts": {
"test": "mocha",
"build": "webpack",
"dev": "webpack -w"
},
"bin": {
"mws-decode": "bin/decode",
"mws-recode": "bin/recode"
},
"dependencies": {
"jsonpath-plus": "^7.2.0",
"deep-extend": "^0.6.0",
"fast-deep-equal": "^2.0.1",
"shortid": "^2.2.15",
"is": "^3.2.1",
"qs": "^6.11.2",
"base64-js": "^1.5.1",
"hash.js": "^1.1.7",
"minimist": "^1.2.8"
},
"devDependencies": {
"mocha": "^10.2.0",
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/register": "^7.22.15",
"babel-loader": "^9.1.3",
"webpack-cli": "^5.1.4",
"webpack": "^5.89.0",
"layer-pack": "^2.3.4"
}
}