Skip to content

Commit 2546eac

Browse files
author
vakrilov
committed
Update package.json to v3.0.0
1 parent b4b8e05 commit 2546eac

File tree

4 files changed

+47
-20
lines changed

4 files changed

+47
-20
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 3.0.0 (2017-xx-xx)
2+
- Compatible with Angular 4 and NativeScript 3.0
3+
14
# 1.1.2 (2016-10-28)
25
- Angular 2.1.2 compatibility release
36

Diff for: nativescript-angular/package.json

+41-16
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
11
{
22
"private": true,
33
"name": "nativescript-angular",
4-
"version": "2.0.0",
4+
"version": "3.0.0",
55
"description": "An Angular 2 renderer that lets you build mobile apps with NativeScript.",
6-
"homepage": "http://www.telerik.com",
7-
"bugs": "http://www.telerik.com",
6+
"homepage": "https://www.nativescript.org/",
7+
"bugs": "https://github.com/NativeScript/nativescript-angular/issues",
8+
"author": {
9+
"name": "NativeScript Team"
10+
},
811
"contributors": [
9-
"Hristo Deshev <[email protected]>"
12+
"Hristo Deshev <[email protected]>",
13+
"Alexander Vakrilov <[email protected]>",
14+
"Stanimira Vlaeva <[email protected]>"
15+
],
16+
"nativescript": {
17+
"platforms": {
18+
"android": "3.0.0",
19+
"ios": "3.0.0"
20+
}
21+
},
22+
"keywords": [
23+
"NativeScript",
24+
"Angular"
1025
],
1126
"license": "Apache-2.0",
1227
"repository": {
@@ -25,28 +40,38 @@
2540
},
2641
"dependencies": {
2742
"nativescript-intl": "~0.0.8",
43+
"reflect-metadata": "~0.1.8"
44+
},
45+
"peerDependencies": {
2846
"@angular/core": "~4.0.0",
2947
"@angular/common": "~4.0.0",
3048
"@angular/compiler": "~4.0.0",
31-
"@angular/http": "~4.0.0",
3249
"@angular/platform-browser": "~4.0.0",
33-
"@angular/platform-browser-dynamic": "~4.0.0",
34-
"@angular/forms": "~4.0.0",
50+
"@angular/animations": "~4.0.0",
3551
"@angular/router": "~4.0.0",
52+
"@angular/forms": "~4.0.0",
53+
"@angular/http": "~4.0.0",
54+
"tns-core-modules": "^3.0.0 || ^3.0.0-rc.1",
3655
"rxjs": "^5.0.1",
37-
"reflect-metadata": "~0.1.8",
38-
"punycode": "1.3.2",
39-
"querystring": "0.2.0",
40-
"url": "0.10.3"
56+
"zone.js": "^0.8.4"
4157
},
4258
"devDependencies": {
43-
"@angular/animations": "~4.0.0",
59+
"@angular/core": "~4.0.0",
60+
"@angular/common": "~4.0.0",
61+
"@angular/compiler": "~4.0.0",
4462
"@angular/compiler-cli": "~4.0.0",
63+
"@angular/platform-browser": "~4.0.0",
64+
"@angular/animations": "~4.0.0",
65+
"@angular/router": "~4.0.0",
66+
"@angular/forms": "~4.0.0",
67+
"@angular/http": "~4.0.0",
4568
"codelyzer": "~3.0.0-beta.4",
69+
"nativescript-intl": "^0.0.8",
4670
"tns-core-modules": "internal-preview",
4771
"tslint": "~4.5.0",
4872
"typescript": "~2.2.1",
49-
"zone.js": "^0.8.2"
50-
},
51-
"nativescript": {}
52-
}
73+
"rxjs": "^5.0.1",
74+
"reflect-metadata": "^0.1.8",
75+
"zone.js": "^0.8.4"
76+
}
77+
}

Diff for: nativescript-angular/tslint.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,10 @@
1010
"use-host-property-decorator": true,
1111
"no-input-rename": true,
1212
"no-output-rename": true,
13-
"use-life-cycle-interface": true,
1413
"use-pipe-transform-interface": true,
1514
"pipe-naming": [true, "camelCase", "ns"],
1615
"component-class-suffix": true,
1716
"directive-class-suffix": true,
18-
"import-destructuring-spacing": true,
19-
"templates-use-public": true,
20-
"no-access-missing-member": true,
2117
"invoke-injectable": true,
2218
"member-access": false,
2319
"no-any": false,
@@ -129,6 +125,7 @@
129125
true,
130126
"check-branch",
131127
"check-decl",
128+
"check-module",
132129
"check-operator",
133130
"check-separator",
134131
"check-type"

Diff for: tests/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@
2626
],
2727
"homepage": "http://nativescript.org",
2828
"dependencies": {
29+
"@angular/animations": "~4.0.0",
2930
"@angular/common": "~4.0.0",
3031
"@angular/compiler": "~4.0.0",
3132
"@angular/core": "~4.0.0",
33+
"@angular/forms": "~4.0.0",
3234
"@angular/http": "~4.0.0",
3335
"@angular/platform-browser": "~4.0.0",
3436
"@angular/platform-browser-dynamic": "~4.0.0",

0 commit comments

Comments
 (0)