-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "proxy-tester",
"version": "1.0.0",
"description": "Proxy tester for use with PD proxies.",
"main": "src/main/index.js",
"scripts": {
"dev": "electron .",
"build": "electron-builder -mwl",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win --x64",
"build:linux": "electron-builder --linux",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DestroyerBots/proxy-tester.git"
},
"author": "REAL BIG TIME LLC",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/DestroyerBots/proxy-tester/issues"
},
"homepage": "https://github.com/DestroyerBots/proxy-tester#readme",
"dependencies": {
"ajv": "^6.5.4",
"har-schema": "^2.0.0",
"har-validator": "^5.1.0",
"request": "^2.88.0"
},
"devDependencies": {
"electron": "^3.0.0",
"electron-builder": "^20.28.4",
"electron-builder-squirrel-windows": "^20.28.3",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"isdev": "^1.0.1",
"mocha": "^5.2.0"
},
"build": {
"asar": true,
"productName": "DestroyerBotsProxyTester",
"appId": "com.projectdestroyer.proxytester",
"mac": {
"target": "default"
},
"win": {
"publisherName": "ProjectDestroyer",
"target": "squirrel"
},
"files": [
"src/**",
"static/**"
]
}
}