forked from nstudio/nativescript-checkbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.04 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "nativescript-checkbox",
"version": "3.0.3",
"description": "NativeScript plugin for checkbox widget.",
"main": "checkbox",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "3.0.1",
"ios": "3.0.1"
}
},
"scripts": {
"publish": "grunt publish",
"precommit": "lint-staged",
"build": "tsc",
"copy.ios":
"cp -R checkbox.*.js demo/node_modules/nativescript-checkbox && cd demo && tns run ios --syncAllFiles",
"copy.android":
"cp -R checkbox.*.js demo/node_modules/nativescript-checkbox && cd demo && tns run android --syncAllFiles",
"buildrun":
"npm run build && cp -R checkbox.*.js demo/node_modules/nativescript-checkbox",
"demo.ios": "npm run preparedemo && cd demo && tns run ios --emulator",
"demo.ng.ios":
"npm run preparedemong && cd demo-ng && tns run ios --emulator",
"demo.android":
"npm run preparedemo && cd demo && tns run android --emulator",
"demo.ng.android":
"npm run preparedemong && cd demo-ng && tns run android --emulator",
"debug.ios": "npm run preparedemo && cd demo && tns debug ios",
"debug.android": "npm run preparedemo && cd demo && tns debug android",
"preparedemo":
"npm run build && cd demo && tns plugin remove nativescript-checkbox && tns plugin add .. && tns install",
"preparedemong":
"npm run build && cd demo-ng && tns plugin remove nativescript-checkbox && tns plugin add .. && tns install",
"nuke":
"rm -rf node_modules && cd demo && rm -rf node_modules platforms hooks && cd ../demo-ng && rm -rf node_modules platforms hooks && cd .."
},
"lint-staged": {
"*.ts": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "https://github.com/bradmartin/nativescript-checkbox.git"
},
"keywords": [
"NativeScript",
"TypeScript",
"Android",
"iOS",
"Material Design",
"CheckBox"
],
"author": {
"name": "Brad Martin",
"email": "[email protected]"
},
"contributors": [
{
"name": "Nathan Walker",
"email": "[email protected]",
"url": "https://github.com/NathanWalker"
},
{
"name": "Steve McNiven-Scott",
"email": "[email protected]",
"url": "https://github.com/sitefinitysteve"
},
{
"name": "Osei Fortune",
"email": "[email protected]",
"url": "https://github.com/triniwiz"
},
{
"name": "Eddy Verbruggen",
"email": "[email protected]",
"url": "https://github.com/EddyVerbruggen"
},
{
"name": "Jeremiah Ogbomo",
"email": "[email protected]",
"url": "https://github.com/jogboms"
},
{
"name": "Manojkumar Murugesan",
"url": "https://github.com/manojdcoder"
},
{
"name": "",
"url": "https://github.com/jeremy-sweazy-cwt"
},
{
"name": "Schmidely Stéphane",
"email": "[email protected]",
"url": "https://github.com/stephlm2dev"
},
{
"name": "August Heegaard",
"url": "https://github.com/agisboye"
}
],
"bugs": {
"url": "https://github.com/bradmartin/nativescript-checkbox/issues"
},
"license": "MIT",
"homepage": "https://github.com/bradmartin/nativescript-checkbox",
"readmeFilename": "README.md",
"devDependencies": {
"@angular/common": "~4.4.1",
"@angular/compiler": "~4.4.1",
"@angular/compiler-cli": "~4.4.1",
"@angular/core": "~4.4.1",
"@angular/forms": "~4.4.1",
"@angular/http": "~4.4.1",
"@angular/platform-browser": "~4.4.1",
"@angular/router": "~4.4.1",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-exec": "^2.0.0",
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"nativescript-angular": "~4.4.0",
"prettier": "^1.4.4",
"rxjs": "~5.0.1",
"tns-core-modules": "~3.0.0",
"tns-platform-declarations": "~3.0.0",
"typescript": "~2.3.4",
"zone.js": "~0.8.9"
},
"peerDependencies": {
"tns-core-modules": "^3.1.0 || >3.3.0-"
}
}