-
-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.38 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.38 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-angular",
"version": "8.0.0",
"$schema": "./node_modules/ng-packagr/package.schema.json",
"ngPackage": {
"whitelistedNonPeerDependencies": [
"nativescript-intl",
"reflect-metadata"
],
"lib": {
"entryFile": "index.ts"
}
},
"description": "An Angular renderer that lets you build mobile apps with NativeScript.",
"homepage": "https://www.nativescript.org/",
"bugs": "https://github.com/NativeScript/nativescript-angular/issues",
"author": {
"name": "NativeScript Team"
},
"contributors": [
"Hristo Deshev <hristo.deshev@telerik.com>",
"Alexander Vakrilov <alexander.vakrilov@progress.com>",
"Stanimira Vlaeva <Stanimira.Vlaeva@progress.com>"
],
"nativescript": {
"platforms": {
"android": "5.0.0",
"ios": "5.0.0"
}
},
"keywords": [
"NativeScript",
"Angular"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-angular.git"
},
"scripts": {
"pack": "rm -rf dist && tsc && ng-packagr -p package.json && cp -rf hooks dist/hooks && cd dist && npm pack"
},
"dependencies": {
"nativescript-intl": "^3.0.0",
"reflect-metadata": "^0.1.8"
},
"peerDependencies": {
"@angular/platform-browser-dynamic": "~8.0.0-beta.7",
"@angular/common": "~8.0.0-beta.7",
"@angular/compiler": "~8.0.0-beta.7",
"@angular/core": "~8.0.0-beta.7",
"@angular/forms": "~8.0.0-beta.7",
"@angular/http": "~8.0.0-beta.7",
"@angular/platform-browser": "~8.0.0-beta.7",
"@angular/router": "~8.0.0-beta.7",
"rxjs": "^6.3.3",
"tns-core-modules": "^5.1.0 || >5.1.0- || >5.2.0-",
"typescript": "~3.1.1",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/animations": "~8.0.0-beta.7",
"@angular/common": "~8.0.0-beta.7",
"@angular/compiler": "~8.0.0-beta.7",
"@angular/compiler-cli": "~8.0.0-beta.7",
"@angular/core": "~8.0.0-beta.7",
"@angular/forms": "~8.0.0-beta.7",
"@angular/http": "~8.0.0-beta.7",
"@angular/platform-browser": "~8.0.0-beta.7",
"@angular/platform-browser-dynamic": "~8.0.0-beta.7",
"@angular/router": "~8.0.0-beta.7",
"codelyzer": "^4.5.0",
"ng-packagr": "^4.7.1",
"rxjs": "~6.3.3",
"tns-core-modules": "next",
"tsickle": "^0.34.3",
"tslint": "^5.5.0",
"typescript": "~3.1.1",
"zone.js": "^0.8.4"
}
}