-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.34 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
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
94
95
96
{
"name": "learning-ionic",
"version": "0.5.3",
"description": "Project to learn ionic of course",
"devDependencies": {
"autoprefixer": "^6.3.1",
"bower": "^1.7.7",
"doctoc": "^1.2.0",
"grunt": "^1.0.1",
"grunt-bump-cordova": "^0.1.6",
"grunt-chokidar": "^1.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-groc": "^0.7.1",
"grunt-html2js": "^0.3.5",
"grunt-jscs": "^3.0.1",
"grunt-karma": "^2.0.0",
"grunt-newer": "^1.1.1",
"grunt-ng-annotate": "^2.0.2",
"grunt-parallel": "^0.5.1",
"grunt-plato": "^1.4.0",
"grunt-postcss": "^0.8.0",
"grunt-replace": "^1.0.1",
"grunt-sass": "^1.2.1",
"grunt-sass-compile-imports": "^0.2.1",
"grunt-shell": "^1.3.1",
"jasmine-core": "^2.4.1",
"jit-grunt": "^0.10.0",
"js-yaml": "^3.5.2",
"jscs-stylish": "^0.3.1",
"jshint-stylish": "^2.2.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"load-grunt-configs": "^1.0.0",
"lodash": "^4.15.0",
"node.extend": "^1.1.5",
"phantomjs-prebuilt": "^2.1.12",
"shelljs": "^0.7.3",
"time-grunt": "^1.3.0"
},
"cordovaPlugins": [
"cordova-plugin-console",
"cordova-plugin-crosswalk-webview",
"cordova-plugin-device",
"cordova-plugin-statusbar",
"cordova-plugin-whitelist",
"ionic-plugin-keyboard",
"cordova-plugin-splashscreen",
{
"locator": "https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin.git",
"id": "cordova-plugin-x-toast"
},
"cordova-plugin-file-transfer",
"cordova-plugin-file",
"cordova-plugin-inappbrowser",
{
"locator": "https://github.com/danwilson/google-analytics-plugin.git",
"id": "cordova-plugin-google-analytics"
},
"com-sarriaroman-photoviewer",
"cordova-fabric-plugin --variable FABRIC_API_KEY=e80c28807e2be09aa4756fcf320d5e2177a7dce7 --variable FABRIC_API_SECRET=573fc3586b5032baf179cb57759bff8a9271f7b4f38beba9fe992d19ac49a4ca"
],
"cordovaPlatforms": [
"android",
"ios"
],
"scripts": {
"prestart": " chmod a+x ./hooks/after_prepare/*.js && npm install",
"postinstall": "bower install",
"start": "npm run serve",
"serve": "grunt dev --mock --proxy && grunt serve --mock --proxy",
"android": "grunt dev --platform=android && ionic run android",
"android-lr": "grunt dev --platform=android --proxy && grunt run:android --proxy",
"ios": "grunt dev --platform=ios && ionic run ios",
"ios-lr": "grunt dev --platform=ios --proxy && grunt run:ios --proxy",
"test": "npm run test-local",
"test-local": "grunt dev --mock && grunt karma:dev",
"test-local-w": "grunt dev --mock && grunt parallel:test-w --mock",
"test-saucelabs": "grunt dev --mock && grunt karma:dev-saucelabs",
"test-full": "npm run test-local && npm run test-saucelabs",
"doc": "grunt clean:doc groc plato",
"doctoc": "doctoc ./README.md --github",
"build": "grunt dev && ionic build"
}
}