-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 999 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "PostParrot",
"version": "0.1.2",
"license": "MIT",
"description": "Autoreply for Messenger",
"author": "Emma Arfelt <trordu@selv.dk>",
"main": "main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron ./",
"dev": "NODE_ENV='development' npm run start",
"dist": "build -m"
},
"build": {
"appId": "PostParrot",
"dmg": {
"iconSize": "120",
"contents": [
{
"x": 100,
"y": 120
},
{
"x": 230,
"y": 120,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
},
"linux": {
"target": "deb"
}
},
"dependencies": {
"arraylist": "^0.1.0",
"electron-store": "^1.3.0",
"facebook-chat-api": "^1.6.0"
},
"devDependencies": {
"electron": "~1.7.11",
"electron-builder": "^19.56.2",
"electron-packager": "^10.1.1"
}
}