-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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": "captcha-harvester",
"version": "2.1.0",
"description": "Generate Captcha Tokens with ease.",
"main": "index.js",
"scripts": {
"start": "electron . --debug",
"dist:win": "build --windows --x64 --dir",
"dist:mac": "build --mac",
"installer": "node scripts/installer.js"
},
"author": "Peter Soboyejo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/dzt/captcha-harvester.git"
},
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"bootstrap": "^3.3.7",
"console.table": "^0.8.0",
"copy-paste": "^1.3.0",
"electron-config": "^1.0.0",
"electron-settings": "^2.2.2",
"express": "^4.16.2",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"moment": "^2.20.1",
"object-path": "^0.11.4",
"path": "^0.12.7",
"randomstring": "^1.1.5",
"request": "^2.83.0",
"rimraf": "^2.5.4",
"underscore": "^1.8.3"
},
"devDependencies": {
"electron-winstaller": "^2.5.0",
"electron": "1.3.4",
"electron-builder": "^19.13.0"
},
"build": {
"productName": "CaptchaHarvester",
"appId": "com.petersoboyejo.captchaharvester",
"mac": {
"target": "default",
"icon": "icon.icns",
"identity": null
},
"win": {
"publisherName": "CaptchaHarvester",
"target": "squirrel",
"icon": "icon.ico"
}
}
}