forked from bradmartin/nativescript-telegram-image-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.81 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
{
"name": "nativescript-telegram-image-picker",
"version": "1.0.2",
"description": "NativeScript plugin using the TelegramGallery Image Picker library for a customized image picker.",
"main": "telegram-image-picker",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "2.0.0"
}
},
"repository": {
"type": "git",
"url": "https://github.com/bradmartin/nativescript-telegram-image-picker.git"
},
"keywords": [
"NativeScript",
"telegram-image-picker",
"TypeScript",
"images",
"bradmartin",
"thorum",
"android",
"gallery",
"image picker"
],
"author": {
"name": "Brad Martin",
"email": "[email protected]"
},
"license": {
"type": "MIT",
"url": "https://github.com/bradmartin/nativescript-telegram-image-picker/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/bradmartin/nativescript-telegram-image-picker/issues"
},
"homepage": "https://github.com/bradmartin/nativescript-telegram-image-picker",
"readmeFilename": "README.md",
"scripts": {
"build": "tsc",
"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 --emulator",
"debug.android": "npm run preparedemo && cd demo && tns debug android --emulator",
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-telegram-image-picker && tns plugin add .. && tns install",
"setup": "cd demo && npm install && cd .. && npm run build && cd demo && tns plugin add .. && cd ..",
"start": "npm run demo.ios"
}
}