-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
{
"name": "nativescript-grid-view",
"version": "5.2.0",
"description": "A NativeScript GridView widget.",
"main": "grid-view",
"typings": "grid-view.d.ts",
"nativescript": {
"platforms": {
"ios": "5.0.0",
"android": "5.0.0"
},
"plugin": {
"nan": "true",
"pan": "true",
"core3": "true",
"category": "Interface"
}
},
"repository": {
"type": "git",
"url": "https://github.com/PeterStaev/NativeScript-Grid-View"
},
"scripts": {
"tslint": "tslint --project tsconfig.json",
"tsc": "tsc --project tsconfig.json",
"ngc": "ngc --project tsconfig.aot.json",
"demo-ios": "grunt build && cd demo && tns run ios",
"demo-android": "grunt build && cd demo && tns run android",
"demo-ng-ios": "grunt build && cd demo-ng && tns run ios",
"demo-ng-android": "grunt build && cd demo-ng && tns run android"
},
"keywords": [
"NativeScript",
"GridView",
"RecyclerView",
"UICollectionView",
"tangra"
],
"author": "Peter Staev <[email protected]>",
"contributors": [
"Morten Sjøgren (https://github.com/m-abs)",
"mintyweazel (https://github.com/mintyweazel)",
"praven07 (https://github.com/praven07)"
],
"license": "Apache-2.0",
"peerDependencies": {
"tns-core-modules": ">=5"
},
"devDependencies": {
"@angular/common": "~7.0.3",
"@angular/compiler": "~7.0.3",
"@angular/compiler-cli": "~7.0.3",
"@angular/core": "~7.0.3",
"@angular/forms": "~7.0.3",
"@angular/http": "~7.0.3",
"@angular/platform-browser": "~7.0.3",
"@angular/platform-browser-dynamic": "~7.0.3",
"@angular/router": "~7.0.3",
"grunt": "1.0.1",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-copy": "1.0.0",
"grunt-exec": "2.0.0",
"nativescript-angular": "~7.0.3",
"rxjs": "^6.3.3",
"tns-core-modules": "^5.1.1",
"tns-platform-declarations": "~4.0.0",
"tslint": "~5.1.0",
"typescript": "~3.1.6",
"zone.js": "^0.8.14"
}
}