-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.59 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.59 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
{
"devDependencies": {
"babel-cli": "^6.0.0"
},
"scripts": {
"compile": "babel --no-comments --presets es2015 --ignore src/lib/ -Dd www src",
"watch": "babel --no-comments --presets es2015 --ignore src/lib/ -wDd www src",
"update": "tools\\UpdateResources",
"build": "cordova build android --buildConfig \"E:\\AppData\\Sign\\cordova.json\"",
"buildrelease": "cordova build android --release --buildConfig \"E:\\AppData\\Sign\\cordova.json\""
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"cordova-android": "~6.1.2",
"cordova-browser": "~4.1.0",
"cordova-plugin-device": "~1.1.4",
"cordova-plugin-file": "~4.3.1",
"cordova-plugin-http": "~1.2.0",
"cordova-plugin-inappbrowser": "~1.7.0",
"cordova-plugin-network-information": "~1.3.1",
"cordova-plugin-screen-orientation": "^2.0.1",
"cordova-plugin-statusbar": "~2.2.2",
"cordova-plugin-whitelist": "1",
"es6-promise-plugin": "git+https://github.com/vstirbu/PromisesPlugin.git",
"sortablejs": "^1.5.1"
},
"cordova": {
"platforms": [
"android",
"browser"
],
"plugins": {
"cordova-plugin-device": {},
"cordova-plugin-file": {},
"cordova-plugin-http": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-network-information": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-screen-orientation": {}
}
}
}