-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
82 lines (82 loc) · 2.2 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
74
75
76
77
78
79
80
81
82
{
"name": "kinvey-nativescript-sdk",
"description": "Kinvey JavaScript SDK for NativeScript applications.",
"version": "8.0.1",
"license": "Apache-2.0",
"homepage": "https://github.com/Kinvey/js-sdk/tree/master/packages/nativescript-sdk",
"repository": {
"type": "git",
"url": "https://github.com/Kinvey/js-sdk.git"
},
"bugs": {
"url": "https://github.com/Kinvey/js-sdk/issues"
},
"author": {
"name": "Thomas Conner",
"email": "thomas.conner@progress.com"
},
"keywords": [
"Kinvey",
"JavaScript",
"NativeScript"
],
"main": "lib/nativescript/index.js",
"scripts": {
"prebuild": "del lib",
"build": "ngc -p tsconfig.json",
"postbuild": "node scripts/postbuild.js",
"postinstall": "node nativescript-hook-scripts/postinstall.js",
"preuninstall": "node nativescript-hook-scripts/preuninstall.js"
},
"dependencies": {
"@nativescript/background-http": "~5.0.0",
"@nativescript/secure-storage": "~3.0.0",
"events": "3.0.0",
"kinvey-js-sdk": "^7.0.0",
"lodash": "4.17.21",
"nativescript-hook": "0.2.5",
"nativescript-sqlite": "2.8.6",
"nativescript-urlhandler": "~1.3.0",
"pubnub": "https://github.com/kinvey/pubnub-javascript/tarball/67b7944366453a87226389d483ac1ad861e0e129"
},
"peerDependencies": {
"@nativescript/firebase": "~11.0.0"
},
"devDependencies": {
"@angular/compiler": "~10.1.0",
"@angular/compiler-cli": "~10.1.0",
"@angular/core": "~10.1.0",
"@nativescript/core": "~7.0.5",
"@nativescript/firebase": "~11.0.0",
"@nativescript/types": "~7.0.4",
"@types/events": "~3.0.0",
"del-cli": "2.0.0",
"fs-extra": "~8.1.0",
"typescript": "~3.9.7"
},
"files": [
"angular",
"lib",
"nativescript-hook-scripts",
"platforms",
"push.js"
],
"nativescript": {
"hooks": [
{
"type": "before-checkForChanges",
"script": "nativescript-hook-scripts/before-checkForChanges.js",
"inject": true
},
{
"type": "before-preview-sync",
"script": "nativescript-hook-scripts/before-preview-sync.js",
"inject": true
}
],
"platforms": {
"android": "5.3.0",
"ios": "5.3.0"
}
}
}