-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.23 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.23 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
{
"name": "nativescript-facebook",
"version": "4.2.1",
"description": "NativeScript plugin, wrapper of native Facebook SDK for Android and iOS.",
"nativescript": {
"platforms": {
"android": "4.0.0",
"ios": "4.0.0"
}
},
"scripts": {
"tsc": "tsc -skipLibCheck",
"ngc": "node --max-old-space-size=8192 ./node_modules/.bin/ngc",
"build": "npm i && tsc && tns plugin build && npm run ngc",
"build.iosOnly": "npm i && tsc && npm run ngc",
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**' --exclude '**/platforms/**'",
"prepublishOnly": "npm run build",
"plugin.tscwatch": "tsc -skipLibCheck -w",
"demo.ios": "npm i && npm run tsc && cd ../demo && tns run ios",
"demo.android": "npm i && npm run tsc && cd ../demo && tns run android",
"demo.ng.ios": "npm i && npm run tsc && cd ../demo-angular && tns run ios",
"demo.ng.android": "npm i && npm run tsc && cd ../demo-angular && tns run android",
"demo.vue.ios": "npm i && npm run tsc && cd ../demo-vue && tns run ios",
"demo.vue.android": "npm i && npm run tsc && cd ../demo-vue && tns run android"
},
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-facebook.git"
},
"keywords": [
"NativeScript",
"TypeScript",
"Android",
"iOS",
"Facebook"
],
"author": "NativeScript Team",
"bugs": {
"url": "https://github.com/NativeScript/nativescript-facebook/issues"
},
"license": "Apache 2.0",
"typings": "index.d.ts",
"homepage": "https://github.com/NativeScript/nativescript-facebook",
"readmeFilename": "README.md",
"devDependencies": {
"tns-core-modules": "^6.0.0",
"tns-platform-declarations": "^6.0.0",
"typescript": "~3.5.3",
"nativescript-angular": "~8.20.0",
"nativescript-vue": "~2.4.0",
"@angular/core": "~11.0.5",
"@angular/common": "~8.2.0",
"@angular/compiler": "~8.2.0",
"@angular/compiler-cli": "~8.2.0",
"rxjs": "^6.3.3",
"zone.js": "~0.8.26",
"tslint": "~5.11.0"
}
}