forked from wordpress-clients/hybrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "wordpress-hybrid-client",
"version": "1.5.0",
"title": "wordpress-hybrid-client",
"description": "AngularJS client using Ionic Framework and based on the json-rest-api plugin: https://wordpress.org/plugins/json-rest-api/ with CORS enabled.",
"main": "index.js",
"scripts": {
"build": "bash ./release.sh",
"installCordova": "bash ./install_cordova.sh",
"devserver": "webpack-dev-server --port 8080 --json --progress",
"dumpdev": "rm -rf www/* && webpack --progress --colors -d",
"dumpprod": "rm -rf www/* && webpack --progress --colors --config webpack.config.prod.js -p",
"runAndroid": "npm run dumpdev && cordova run android",
"runIOS": "cordova run ios",
"runIosEmulator": "npm run dumpdev && cordova run ios",
"runIosDevice": "npm run dumpdev && cordova run ios --device",
"cordova": "cordova",
"buildAndroid": "cordova build android --device",
"buildProdAndroid": "cordova build android --device --release",
"buildIOS": "cordova build ios --device",
"buildProdIOS": "cordova build ios --device --release",
"buildAll": "cordova build android ios --device",
"buildProdAll": "cordova build android ios --device --release",
"pluginAddAll": "cordova plugin add [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] https://github.com/phonegap-build/PushPlugin.git#2.5.0 [email protected]",
"platformAddAndroid": "cordova platform add android",
"platformAddIOS": "cordova platform add ios",
"platformAddAll": "cordova platform add android ios",
"ionicBuild": "cordova build --device --release",
"emulateIOS": "cordova emulate ios",
"rmPlugin": "cordova plugin rm",
"listPlugin": "cordova plugin list"
},
"keywords": [
"wp-api",
"angular",
"angularjs",
"rest",
"restfull",
"hybrid",
"material design",
"client"
],
"author": "Julien Renaux <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shprink/wordpress-hybrid-client"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shprink/wordpress-hybrid-client/issues"
},
"homepage": "https://github.com/shprink/wordpress-hybrid-client",
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"clone": "^1.0.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.8.0",
"cordova": "~5.0.0",
"css-loader": "^0.15.1",
"exports-loader": "^0.6.2",
"expose-loader": "^0.7.0",
"file-loader": "^0.8.1",
"gulp": "^3.8.10",
"gulp-bump": "^0.3.0",
"gulp-cordova-bump": "^1.2.2",
"gulp-filter": "^2.0.2",
"gulp-git": "^1.2.3",
"gulp-tag-version": "^1.2.1",
"gulp-util": "^3.0.1",
"gulp-xml-editor": "^2.2.1",
"html-loader": "^0.3.0",
"html-webpack-plugin": "^1.1.0",
"imports-loader": "^0.6.4",
"json-loader": "^0.5.1",
"markdown-loader": "^0.1.2",
"ng-annotate-loader": "~0.0.4",
"node-gcm": "^0.10.0",
"path": "^0.11.0",
"sass-loader": "^1.0.0",
"semver": "^4.3.4",
"style-loader": "^0.12.0",
"util": "^0.10.3",
"webpack": "~1.10.0",
"webpack-dev-server": "~1.10.0",
"xml2js": "^0.4.8"
},
"dependencies": {
"MD5": "^1.2.1",
"angular": "~1.3.0",
"angular-animate": "~1.3.0",
"angular-aria": "~1.3.0",
"angular-cache": "^4.0.0",
"angular-filter": "^0.5.4",
"angular-highlightjs": "^0.4.1",
"angular-moment": "^0.10.0",
"angular-recursion": "^1.0.5",
"angular-sanitize": "~1.3.0",
"angular-translate": "^2.5.2",
"angular-ui-router": "^0.2.13",
"highlight.js": "^8.6.0",
"imagesloaded": "^3.1.8",
"imgcache.js": "^1.0.0",
"ionic-sdk": "^1.0.0",
"lodash": "^3.9.3",
"moment": "^2.9.0",
"ng-cordova": "^0.1.17-alpha",
"v-accordion": "~1.2.7",
"wp-api-angularjs": "^1.0.0"
}
}