forked from nstudio/nativescript-checkbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
{
"name": "nativescript-checkbox",
"version": "2.0.0",
"description": "NativeScript plugin for checkbox widget.",
"main": "checkbox",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
}
},
"scripts": {
"build": "tsc",
"copy.ios": "cp -R checkbox.*.js demo/node_modules/nativescript-checkbox && cd demo && tns livesync ios --watch",
"copy.android": "cp -R checkbox.*.js demo/node_modules/nativescript-checkbox && cd demo && tns livesync android --watch",
"buildrun": "npm run build && cp -R checkbox.*.js demo/node_modules/nativescript-checkbox",
"demo.ios": "npm run preparedemo && cd demo && tns emulate ios",
"demo.android": "npm run preparedemo && cd demo && tns run android",
"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",
"setup": "cd demo && npm install && cd .. && npm run build && cd demo && tns plugin add .. && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/bradmartin/nativescript-checkbox.git"
},
"keywords": [
"NativeScript",
"JavaScript",
"TypeScript",
"Android",
"iOS",
"Material Design",
"CheckBox",
"bradmartin",
"thorum"
],
"author": {
"name": "Brad Martin",
"email": "bradwaynemartin@gmail.com"
},
"contributors": [
{
"name": "Nathan Walker",
"email": "walkerrunpdx@gmail.com",
"url": "https://github.com/NathanWalker"
},
{
"name": "Steve McNiven-Scott",
"email": "steve@sitefinitysteve.com",
"url": "https://github.com/sitefinitysteve"
},
{
"name": "Osei Fortune",
"email": "fortune.osei@yahoo.com",
"url": "https://github.com/triniwiz"
}
],
"bugs": {
"url": "https://github.com/bradmartin/nativescript-checkbox/issues"
},
"license": "MIT",
"homepage": "https://github.com/bradmartin/nativescript-checkbox",
"readmeFilename": "README.md",
"devDependencies": {
"tns-platform-declarations": "^3.0.0",
"tns-core-modules": "^3.0.0",
"typescript": "^2.2.2"
}
}