Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
terkelg
GitHub Repository: terkelg/ramme
Path: blob/master/package.json
106 views
1
{
2
"repository": "terkelg/ramme",
3
"author": "Terkel Gjervig",
4
"license": "MIT",
5
"scripts": {
6
"postinstall": "electron-builder install-app-deps && cd app && yarn && opencollective postinstall",
7
"test": "standard",
8
"build": "gulp build",
9
"dev": "gulp dev & electron app",
10
"prestart": "yarn build",
11
"start": "electron app",
12
"pack": "yarn build && build --dir",
13
"dist": "yarn build && build --ia32 --x64"
14
},
15
"build": {
16
"appId": "com.terkel.ramme",
17
"mac": {
18
"category": "public.app-category.social-networking"
19
},
20
"linux": {
21
"synopsis": "Unofficial Instagram Desktop App",
22
"category": "Network",
23
"target": [
24
"deb",
25
"rpm",
26
"pacman",
27
"tar.gz"
28
]
29
}
30
},
31
"devDependencies": {
32
"babel-preset-babili": "^0.1.4",
33
"babel-preset-es2015": "^6.24.1",
34
"babili": "^0.1.4",
35
"del": "^3.0.0",
36
"electron": "^2.0.3",
37
"electron-builder": "^20.18.0",
38
"eslint-import-resolver-node": "^0.3.2",
39
"gulp": "github:gulpjs/gulp#v4.0.0",
40
"gulp-autoprefixer": "^5.0.0",
41
"gulp-babel": "^7.0.1",
42
"gulp-image": "^4.3.0",
43
"gulp-sass": "^4.0.1",
44
"standard": "^11.0.1"
45
},
46
"standard": {
47
"ignore": [
48
"app/dist"
49
]
50
},
51
"dependencies": {
52
"opencollective": "^1.0.3"
53
},
54
"collective": {
55
"type": "opencollective",
56
"url": "https://opencollective.com/ramme",
57
"logo": "https://opencollective.com/opencollective/logo.txt"
58
}
59
}
60
61