forked from terkelg/ramme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"repository": "terkelg/ramme",
"author": "Terkel Gjervig",
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps && cd app && yarn && opencollective postinstall",
"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": "^2.0.3",
"electron-builder": "^20.18.0",
"eslint-import-resolver-node": "^0.3.2",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^7.0.1",
"gulp-image": "^4.3.0",
"gulp-sass": "^4.0.1",
"standard": "^11.0.1"
},
"standard": {
"ignore": [
"app/dist"
]
},
"dependencies": {
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/ramme",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}