-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (60 loc) · 2.47 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
{
"name": "nativescript-rich-textfield",
"version": "1.0.0",
"description": "Nativescript plugin that provides textfield with icon and exposes a few additional attributes for styling",
"main": "rich-textfield.common",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "2.5.0",
"ios": "2.5.0"
}
},
"scripts": {
"build": "tsc",
"demo.ios": "npm run preparedemo && cd demo && tns run ios --emulator",
"demo.ios.device": "npm run preparedemo && cd demo && tns run ios",
"demo.android": "npm run preparedemo && cd demo && tns run android --justlaunch",
"test.ios": "cd demo && tns platform remove ios && tns test ios --emulator",
"test.ios.device": "cd demo && tns platform remove ios && tns test ios",
"test.android": "cd demo && tns platform remove android && tns test android --justlaunch",
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-rich-textfield && tns plugin add .. && tns install",
"demo.ios.angular": "npm run preparedemoangular && cd demo-angular && tns run ios --emulator",
"demo.ios.device.angular": "npm run preparedemoangular && cd demo-angular && tns run ios",
"demo.android.angular": "npm run preparedemoangular && cd demo-angular && tns debug android --justlaunch",
"test.ios.angular": "cd demo-angular && tns platform remove ios && tns test ios --emulator",
"test.ios.device.angular": "cd demo-angular && tns platform remove ios && tns test ios",
"test.android.angular": "cd demo-angular && tns platform remove android",
"preparedemoangular": "npm run build && cd demo-angular && tns plugin remove nativescript-rich-textfield && tns plugin add .. && tns install"
},
"repository": {
"type": "git",
"url": "https://github.com/zbranzov/nativescript-rich-textfield.git"
},
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS"
],
"author": {
"name": "Zdravko Branzov",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/zbranzov/nativescript-rich-textfield/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/zbranzov/nativescript-rich-textfield",
"readmeFilename": "README.md",
"devDependencies": {
"@angular/compiler": "2.4.3",
"@angular/compiler-cli": "2.4.3",
"nativescript-angular": "1.3.0",
"tns-core-modules": "^2.5.1",
"tns-platform-declarations": "^2.5.0",
"typescript": "^2.1.0",
"prompt": "^1.0.0",
"rimraf": "^2.5.0"
}
}