forked from terkelg/ramme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"repository": "terkelg/ramme",
"author": "Terkel Gjervig",
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps && cd app && yarn",
"test": "standard",
"build": "gulp build",
"dev": "gulp dev & electron app",
"prestart": "yarn build",
"start": "electron app",
"pack": "yarn build && build --dir",
"dist": "yarn build && build --ia32 --x64"
},
"build": {
"appId": "com.terkel.ramme",
"mac": {
"category": "public.app-category.social-networking"
},
"linux": {
"synopsis": "Unofficial Instagram Desktop App",
"category": "Network",
"target": [
"deb",
"rpm",
"pacman",
"tar.gz"
]
}
},
"devDependencies": {
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"babili": "^0.1.4",
"del": "^3.0.0",
"electron": "^1.7.9",
"electron-builder": "^19.37.2",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-image": "^4.0.0",
"gulp-sass": "^3.1.0",
"standard": "^10.0.3"
},
"standard": {
"ignore": [
"app/dist"
]
}
}