-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "browsersync-app",
"version": "0.1.0",
"description": "A standalong browsersync application built on Electron",
"author": "Carlos A. Cabrera <ccabrera@sapient.com>",
"license": "ISC",
"main": "index.js",
"scripts": {
"prebuild": "npm install",
"postinstall": "install-app-deps",
"pack": "build",
"dist": "build",
"serve": "gulp serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"angular": "1.4.9",
"angular-messages": "1.4.9",
"dev-ip": "1.0.1",
"browser-sync": "2.11.1"
},
"devDependencies": {
"babel-preset-es2015": "6.3.13",
"electron-builder": "^2.8.3",
"electron-connect": "0.3.7",
"electron-prebuilt": "^0.36.7",
"gulp": "3.9.0",
"gulp-babel": "6.1.2",
"gulp-clean": "0.3.1",
"gulp-jshint": "^2.0.0",
"gulp-livereload": "3.8.1",
"gulp-load-plugins": "1.2.0",
"gulp-plumber": "1.0.1",
"gulp-sass": "2.2.0",
"gulp-useref": "3.0.5",
"require-dir": "0.3.0"
},
"build": {
"osx": {
"icon": "build/icon.icns",
"icon-size": 80,
"background": "build/background.png",
"contents": [
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 220,
"type": "file"
}
]
}
}
}