forked from nccgroup/wssip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
177 lines (177 loc) · 4.67 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "wssip",
"productName": "WSSiP",
"version": "1.0.11",
"description": "Intercepting Proxy Application to capture, modify and send custom data from one WebSocket host to another, primarily for penetration testing. Supports WebSocket RFC6455 implementations and Socket.io.",
"main": "lib/electron.js",
"bin": {
"wssip": "lib/main.js"
},
"scripts": {
"start": "electron .",
"prepublishOnly": "npm run compile",
"web": "node lib/main.js web",
"debug": "DEBUG=wssip:* electron .",
"debug:win": "set DEBUG=wssip:* && electron . --devtools",
"debug:full": "npm run compile:dev && DEBUG=wssip:* electron . --devtools",
"compile": "NODE_ENV=production webpack --config webpack.config.prod.js",
"compile:dev": "NODE_ENV=development webpack --config webpack.config.js",
"compile:dev-watch": "NODE_ENV=development webpack --config webpack.config.js --watch",
"build": "build",
"build:mac": "build -m",
"build:win32": "build -w",
"build:linux": "build -l",
"lint": "npm run lint:src && npm run lint:lib",
"lint:src": "eslint src",
"lint:lib": "eslint lib",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nccgroup/wssip.git"
},
"bugs": {
"url": "https://github.com/nccgroup/wssip/issues"
},
"keywords": [
"ws",
"wssip",
"websocket",
"websockets",
"socketio",
"socket.io",
"interceptor",
"proxy",
"mitm",
"http",
"https"
],
"author": {
"name": "Samantha Chalker",
"email": "[email protected]",
"url": "https://chalker.io"
},
"license": "AGPL-3.0",
"homepage": "https://github.com/nccgroup/wssip",
"dependencies": {
"conf": "^1.1.1",
"electron-window-state": "^4.1.1",
"hexy": "^0.2.9",
"mitmengine": "1.2.0",
"ws": "^2.3.1",
"yargs": "^8.0.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"css-loader": "^0.28.1",
"debug": "^2.6.8",
"electron": "1.7",
"electron-builder": "^17.8.0",
"electron-react-devtools": "^0.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.1",
"lodash": "^4.17.4",
"material-ui": "0.18.x",
"mocha": "^3.4.1",
"react": "15.5.x",
"react-autobind": "^1.0.6",
"react-data-grid": "2.0.x",
"react-dom": "^15.5.4",
"react-tap-event-plugin": "^2.0.1",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1"
},
"optionalDependencies": {
"node-libcurl": "^1.1.0"
},
"preferGlobal": true,
"engines": {
"node": ">=7.9.0"
},
"build": {
"appId": "com.nccgroup.wssip",
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"directories": {
"buildResources": "./build/staging",
"output": "./build/output"
},
"dmg": {
"artifactName": "${name}-${version}-macos-${arch}.${ext}",
"contents": [
{
"x": 100,
"y": 200
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"app/app.html",
"app/bundle/*",
"build/icon.ico",
"build/icon.icns",
"build/icons/*",
"lib/*.js",
"node_modules/**/*",
"!node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,test,__tests__,tests,powered-test,example,examples,*.d.ts}",
"LICENSE",
"package.json"
],
"linux": {
"artifactName": "${name}-${version}-linux-${arch}.${ext}",
"category": "Utility",
"icon": "./build/icons",
"target": [
"AppImage",
"deb",
"pacman",
"rpm",
"zip"
]
},
"mac": {
"artifactName": "${name}-${version}-macos-${arch}.${ext}",
"category": "public.app-category.utilities",
"icon": "./build/icon.icns",
"target": [
"dmg",
"zip"
]
},
"nodeGypRebuild": false,
"npmArgs": "--production",
"npmRebuild": true,
"nsis": {
"unicode": false,
"artifactName": "${name}-${version}-windows-${arch}-installer.${ext}"
},
"portable": {
"unicode": false,
"artifactName": "${name}-${version}-windows-${arch}-portable.${ext}"
},
"productName": "WSSiP",
"win": {
"artifactName": "${name}-${version}-windows-${arch}.${ext}",
"icon": "./build/icon.ico",
"target": [
"portable",
"zip"
]
}
}
}