forked from arnesson/cordova-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.54 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
{
"author": {
"name": "Robert Arnesson"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arnesson/cordova-plugin-firebase"
},
"name": "cordova-plugin-firebase",
"version": "3.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": {
"version": "node ./bump-version.js && git add -A plugin.xml",
"postversion": "git push && git push --tags && npm publish --verbose",
"test": "npm run test:ios && npm run test:android && npm run test:browser",
"test:android": "npm run test:cordova@8.1.2:android@7.1.4",
"test:browser": "npm run test:cordova@8.1.2:browser@5.0.3",
"test:ios": "npm run test:cordova@8.1.2:ios@4.5.5",
"test:cordova@8.1.2:ios@4.5.5": "bash ./test/test-default.sh 8.1.2 ios 4.5.5",
"test:cordova@8.1.2:android@7.1.0": "bash ./test/test-default.sh 8.1.2 android 7.1.4 && bash ./test/test-with-3-plugins.sh 8.1.2 android 7.1.4 cordova-plugin-request-location-accuracy cordova-android-play-services-gradle-release cordova-android-firebase-gradle-release",
"test:cordova@8.1.2:browser@5.0.3": "bash ./test/test-default.sh 8.1.2 browser 5.0.3"
},
"dependencies": {
"xcode": "^2.0.0",
"xml2js": "^0.4.19",
"plugman": "^2.0.0"
}
}