forked from arnesson/cordova-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"author": {
"name": "Robert Arnesson"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arnesson/cordova-plugin-firebase"
},
"name": "cordova-plugin-firebase",
"version": "1.0.0",
"description": "Cordova plugin for Google Firebase",
"cordova": {
"id": "cordova-plugin-firebase",
"platforms": [
"android",
"ios",
"browser"
]
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova-browser",
"firebase",
"push",
"notifications",
"phone auth"
],
"scripts": {
"postversion": "git push && git push --tags && npm publish",
"test": "npm run test:cordova:v6 && npm run test:cordova:v7",
"test:cordova:v6": "npm run install:cordova:v6 && npm run test:ios:v4 && npm run test:android:v6",
"test:cordova:v7": "npm run install:cordova:v7 && npm run test:ios:v4 && npm run test:android:v7",
"test:ios:v4": "sh build-ios-v4.sh",
"test:android:v6": "sh build-android-v6.sh",
"test:android:v7": "sh build-android-v7.sh",
"install:cordova:v6": "npm uninstall cordova && npm install cordova@^6.x.x --no-save",
"install:cordova:v7": "npm uninstall cordova && npm install cordova@^7.x.x --no-save"
}
}