forked from arnesson/cordova-plugin-firebase
-
-
Notifications
You must be signed in to change notification settings - Fork 468
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "cordova-plugin-firebasex",
"version": "18.0.0",
"description": "Cordova plugin for Google Firebase",
"types": "./types/index.d.ts",
"author": {
"name": "Dave Alden"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dpa99c/cordova-plugin-firebase"
},
"cordova": {
"id": "cordova-plugin-firebase",
"platforms": [
"android",
"ios"
]
},
"keywords": [
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"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",
"postinstall": "node ./scripts/post_install.js",
"test": "npm run test:ios && npm run test:android",
"test:ios": "bash ./test/test-default.sh 9.0.0 ios 5.0.1",
"test:android": "bash ./test/test-default.sh 9.0.0 android 8.1.0 && bash ./test/test-with-3-plugins.sh 9.0.0 android 8.1.0 cordova-plugin-request-location-accuracy cordova-android-play-services-gradle-release cordova-android-firebase-gradle-release"
},
"dependencies": {
"plist": "^3.0.1",
"xcode": "^3.0.1",
"xml-js": "^1.6.11",
"semver": "^7.3.2"
}
}