-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.26 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.26 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ionic-electron-core",
"version": "0.1.0",
"description": "ionic-electron-core: An Ionic/Electron project",
"main": "www/main.js",
"dependencies": {
"babelify": "^6.4.0",
"browserify": "^11.2.0",
"browserify-ngannotate": "^1.0.1",
"browserify-shim": "^3.8.10",
"electron-prebuilt": "^0.34.1",
"gulp": "^3.5.6",
"gulp-angular-templatecache": "^1.8.0",
"gulp-babel": "^5.3.0",
"gulp-concat": "^2.2.0",
"gulp-jade": "^1.1.0",
"gulp-minify-css": "^0.3.0",
"gulp-minify-html": "^1.0.4",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.2.0",
"gulp-sass": "^2.0.4",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.4.2",
"gulp-util": "^2.2.14",
"run-sequence": "^1.1.4",
"vinyl-source-stream": "^1.1.0"
},
"devDependencies": {
"bower": "^1.3.3",
"shelljs": "^0.3.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard"
],
"cordovaPlatforms": [
"ios"
],
"browserify": {
"transform": [
[
"babelify",
{
"ignore": "bower_components",
"compact": false,
"comments": true
}
],
"browserify-ngannotate",
"browserify-shim"
]
},
"browser": {
"angular": "./bower_components/angular/angular.js",
"angular-animate": "./bower_components/angular-animate/angular-animate.js",
"angular-sanitize": "./bower_components/angular-sanitize/angular-sanitize.js",
"angular-ui-router": "./bower_components/angular-ui-router/release/angular-ui-router.js",
"ionic": "./bower_components/ionic/js/ionic.js",
"ionic-angular": "./bower_components/ionic/js/ionic-angular.js"
},
"browserify-shim": {
"angular": "angular",
"angular-animate": {
"depends": [
"angular"
]
},
"angular-sanitize": {
"depends": [
"angular"
]
},
"angular-ui-router": {
"depends": [
"angular"
]
},
"ionic": "ionic",
"ionic-angular": {
"depends": [
"angular",
"angular-animate",
"angular-sanitize",
"angular-ui-router",
"ionic"
]
}
}
}