forked from terkelg/ramme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 886 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
{
"repository": "terkelg/ramme",
"author": "Terkel Gjervig",
"license": "MIT",
"scripts": {
"test": "standard",
"build": "gulp build",
"prestart": "npm run build",
"start": "electron app",
"pack": "npm run build && build --dir",
"dist": "npm run build && build"
},
"build": {
"appId": "com.terkel.ramme",
"mac": {
"category": "public.app-category.social-networking"
},
"linux": {
"target": [
"deb",
"AppImage"
]
}
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"del": "^2.2.2",
"electron": "^1.4.5",
"electron-builder": "^11.3.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-sass": "^3.1.0",
"standard": "^8.5.0"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}