This repository has been archived by the owner on Jul 27, 2019. It is now read-only.
forked from arnesson/cordova-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
58 lines (58 loc) · 3.12 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
{
"name": "cordova-plugin-firebase-lib",
"version": "5.1.1",
"author": {
"name": "Wiz Panda Techno Solutions",
"url": "https://www.wizpanda.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wizpanda/cordova-plugin-firebase-lib"
},
"description": "Cordova plugin for Google Firebase",
"cordova": {
"id": "cordova-plugin-firebase-lib",
"platforms": [
"android",
"ios",
"browser"
]
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova-browser",
"firebase",
"push",
"notifications",
"phone auth"
],
"scripts": {
"preversion": "git add CHANGELOG.md && npx markdown-toc -i README.md && npx markdown-toc -i docs/API.md",
"version": "node ./bump-version.js && git add -A plugin.xml && git add README.md && git add docs/*.md",
"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:[email protected]:[email protected] && npm run test:[email protected]:[email protected] && npm run test:[email protected]:[email protected]",
"test:browser": "npm run test:[email protected]:[email protected] && npm run test:[email protected]:[email protected] && npm run test:[email protected]:[email protected]",
"test:ios": "npm run test:[email protected]:[email protected] && npm run test:[email protected]:[email protected] && npm run test:[email protected]:[email protected]",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 6.5.0 ios 4.5.4",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 7.1.0 ios 4.5.4",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 8.0.0 ios 4.5.4",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 6.5.0 android 6.4.0 && bash ./test/test-with-3-plugins.sh 6.5.0 android 6.4.0 cordova-plugin-request-location-accuracy cordova-android-play-services-gradle-release cordova-android-firebase-gradle-release",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 7.1.0 android 7.1.0 && bash ./test/test-with-3-plugins.sh 7.1.0 android 7.1.0 cordova-plugin-request-location-accuracy cordova-android-play-services-gradle-release cordova-android-firebase-gradle-release",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 8.0.0 android 7.1.0 && bash ./test/test-with-3-plugins.sh 8.0.0 android 7.1.0 cordova-plugin-request-location-accuracy cordova-android-play-services-gradle-release cordova-android-firebase-gradle-release",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 6.5.0 browser 5.0.3",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 7.1.0 browser 5.0.3",
"test:[email protected]:[email protected]": "bash ./test/test-default.sh 8.0.0 browser 5.0.3"
},
"dependencies": {
"chalk": "^2.4.2",
"xcode": "^2.0.0"
},
"devDependencies": {
"cordova-common": "^3.2.0",
"markdown-toc": "^1.2.0"
}
}