-
Notifications
You must be signed in to change notification settings - Fork 406
/
Copy pathpackage.json
98 lines (98 loc) · 2.26 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
{
"name": "IGdm",
"version": "3.0.4",
"description": "Desktop application for Instagram DMs",
"main": "main/main.js",
"husky": {
"hooks": {
"pre-commit": "npm run lint && git add"
}
},
"scripts": {
"lint-browser": "eslint --fix --ext .js ./browser/",
"lint-main": "eslint --fix --ext .js ./main/",
"lint": "npm run lint-browser && npm run lint-main",
"start": "gulp",
"pack": "gulp build && build --dir",
"dist": "gulp build && build -mwl --x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ifedapoolarewaju/igdm.git"
},
"keywords": [
"Instagram",
"messaging",
"Chat",
"DM",
"Social Media"
],
"author": "ifedapo olarewaju",
"license": "MIT",
"dependencies": {
"auto-launch": "^5.0.5",
"bluebird": "3.5.2",
"bootstrap": "^4.4.1",
"electron-connect": "^0.6.3",
"electron-log": "2.2.17",
"electron-updater": "4.2.4",
"fb": "^2.0.0",
"instagram-private-api": "^1.45.3",
"moment": "^2.25.1",
"node-notifier": "^5.4.3",
"nojs": "^0.1.3"
},
"devDependencies": {
"electron": "10.4.2",
"electron-builder": "^22.10.5",
"electron-builder-lib": "20.23.1",
"electron-builder-squirrel-windows": "20.29.0",
"electron-rebuild": "^2.3.5",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"gulp-htmlmin": "^4.0.0",
"gulp-pug": "^3.3.0",
"husky": "^4.2.3",
"jstransformer-markdown-it": "^2.1.0"
},
"optionalDependencies": {
"jquery": "1.9.1 - 3",
"popper.js": "^1.14.7"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "ifedapoolarewaju",
"repo": "igdm"
}
],
"appId": "com.ifedapoolarewaju.desktop.igdm",
"copyright": "ifedapo Olarewaju 2017 - 2020",
"mac": {
"target": [
"dmg",
"zip"
],
"publish": "github",
"category": "public.app-category.social-networking"
},
"win": {
"target": [
"nsis",
"portable"
],
"publish": "github",
"publisherName": "ifedapoolarewaju"
},
"linux": {
"target": [
"AppImage",
"zip",
"deb"
],
"publish": "github",
"maintainer": "Ifedapo Olarewaju <[email protected]>"
}
}
}