This repository has been archived by the owner on Aug 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.64 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
{
"version": "3.12.6",
"name": "kinvey-nativescript-sdk",
"description": "Kinvey NativeScript SDK for developing NativeScript applications.",
"author": "Kinvey, Inc.",
"homepage": "http://www.kinvey.com",
"license": "Apache-2.0",
"main": "kinvey-nativescript-sdk.js",
"typings": "kinvey.d.ts",
"dependencies": {
"nativescript-hook": "0.2.4",
"nativescript-sqlite": "latest",
"nativescript-urlhandler": "^1.2.2",
"rxjs": "~6.2.2"
},
"files": [
"file-upload-worker-android.js",
"kinvey-nativescript-sdk.android.js",
"kinvey-nativescript-sdk.android.js.map",
"kinvey-nativescript-sdk.ios.js",
"kinvey-nativescript-sdk.ios.js.map",
"kinvey.d.ts",
"push.android.js",
"push.android.js.map",
"push.d.ts",
"push.ios.js",
"push.ios.js.map",
"lib/before-checkForChanges.js",
"lib/before-preview-sync.js",
"lib/postinstall.js",
"lib/preuninstall.js",
"platforms/android/AndroidManifest.xml.default",
"platforms/android/AndroidManifest.xml.mic",
"platforms/android/include.gradle",
"platforms/ios/Podfile",
"platforms/ios/Info.plist.mic",
"platforms/ios/app.entitlements"
],
"nativescript": {
"hooks": [
{
"type": "before-checkForChanges",
"script": "lib/before-checkForChanges.js",
"inject": true
},
{
"type": "before-preview-sync",
"script": "lib/before-preview-sync.js",
"inject": true
}
],
"platforms": {
"ios": "4.0.0",
"android": "4.0.0"
}
},
"scripts": {
"postinstall": "node lib/postinstall.js",
"preuninstall": "node lib/preuninstall.js"
}
}