forked from EddyVerbruggen/nativescript-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.11 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.11 KB
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
74
75
76
77
78
79
80
81
{
"name": "nativescript-plugin-firebase",
"version": "4.1.1",
"description": "Fire. Base. Firebase!",
"main": "firebase",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "2.3.0",
"ios": "2.3.0"
},
"plugin": {
"nan": "true",
"pan": "true",
"core3": "true",
"category": "Processing"
},
"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",
"test": "echo 'TODO implement tests :)'"
},
"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",
"Invites",
"Dynamic Links"
],
"author": "Telerik / Eddy Verbruggen <eddyverbruggen@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eddyverbruggen/nativescript-plugin-firebase/issues"
},
"homepage": "https://github.com/eddyverbruggen/nativescript-plugin-firebase",
"dependencies": {
"fs-extra": "~2.1.0",
"fs-promise": "~2.0.0",
"nativescript-hook": "~0.2.0",
"prompt-lite": "~0.1.0",
"xcode": "~0.9.0"
},
"devDependencies": {
"prompt-lite": "~0.1.0",
"xcode": "~0.9.0",
"webpack": "~2.2.0",
"tns-core-modules": "2.5.0"
}
}