-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "respowser",
"version": "1.0.0",
"description": "An Electron browser to test responsive single page application mobile app",
"main": "main.js",
"scripts": {
"start": "electron .",
"clean": "rm -rf ./dist",
"clean:osx": "rm -rf ./dist/osx",
"package-osx": "npm run clean:osx && electron-packager ./ Respowser --platform=darwin --out=dist/osx --overwrite --ignore=dist --ignore=.gitignore --ignore=gulpfile.js --icon=resources/icon.icns"
},
"repository": "",
"keywords": [
"Electron",
"browser",
"responsive",
"single page application",
"mobile"
],
"author": "Luca Caprini",
"license": "",
"dependencies": {
"angular": "^1.5.5",
"angular-animate": "^1.5.5",
"angular-aria": "^1.5.5",
"angular-material": "^1.1.0",
"angular-messages": "^1.5.5",
"app-module-path": "^2.1.0",
"angular-route": "^1.5.8",
"bluebird": "^3.4.6",
"del": "^2.2.2",
"electron": "^1.4.12",
"electron-json-storage": "^2.1.0",
"lodash": "^4.17.2"
},
"devDependencies": {
"electron-connect": "^0.6.1",
"electron-packager": "^8.4.0",
"electron-reload": "^1.0.3",
"gulp": "^3.9.1",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.3.2",
"gulp-svgstore": "^6.1.0",
"shelljs": "^0.7.5"
}
}