forked from EddyVerbruggen/nativescript-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nativescript-plugin-firebase",
"version": "3.11.2",
"description": "Fire. Base. Firebase!",
"main": "firebase",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "2.3.0",
"ios": "2.3.0"
},
"hooks": [
{
"type": "before-prepare",
"script": "scripts/entitlements-before-prepare.js",
"inject": true
},
{
"type": "after-prepare",
"script": "scripts/entitlements-after-prepare.js",
"inject": true
}
]
},
"scripts": {
"bundle-installer": "npm install --ignore-scripts && webpack --config scripts/webpack.config.js scripts/installer.js scripts/postinstall.js",
"prepublish": "npm run bundle-installer",
"postinstall": "node postinstall-hooks.js && node scripts/postinstall.js",
"preuninstall": "node preuninstall-hooks.js",
"setup": "node scripts/postinstall.js setup",
"config": "node scripts/postinstall.js config"
},
"repository": {
"type": "git",
"url": "https://github.com/eddyverbruggen/nativescript-plugin-firebase.git"
},
"keywords": [
"NativeScript",
"Firebase",
"Database",
"Authentication",
"Push Notifications",
"Notifications",
"Messaging",
"Remote Configuration",
"Storage",
"Crash Reporting",
"Analytics",
"Facebook",
"Google",
"AdMob"
],
"author": "Telerik / Eddy Verbruggen <[email protected]>",
"license": {
"type": "MIT",
"url": "https://github.com/eddyverbruggen/nativescript-plugin-firebase/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/eddyverbruggen/nativescript-plugin-firebase/issues"
},
"homepage": "https://github.com/eddyverbruggen/nativescript-plugin-firebase",
"dependencies": {
"xcode": "0.8.0",
"prompt-lite": "^0.1.1",
"fs-promise": "^2.0.0",
"nativescript-hook": "^0.2.1"
},
"devDependencies": {
"prompt-lite": "^0.1.1",
"xcode": "0.8.0",
"webpack": "~2.2.0"
}
}