-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "com.themetalfleece.dobblescore",
"displayName": "Dobble Score",
"version": "1.0.3",
"description": "A score keeper for the game 'Dobble'",
"main": "index.js",
"scripts": {
"setup": "cordova prepare && yarn",
"build-js": "browserify www/js/index.js > www/js/app-index.js",
"android": "yarn build-js && cordova build android && cordova run android",
"browser": "yarn build-js && cordova build browser && cordova run browser",
"android-release": "yarn build-js && cordova run android --release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "TheMetalFleece",
"license": "Apache-2.0",
"dependencies": {
"android": "0.0.8",
"bluebird": "^3.5.1",
"cordova-android": "^7.0.0",
"cordova-browser": "^5.0.2",
"cordova-plugin-exclude-files": "^0.4.1",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-promise-fs": "^1.2.5"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-file": {},
"cordova-plugin-exclude-files": {}
},
"platforms": [
"android",
"browser"
]
}
}