-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "nativescript-fancy-calendar",
"version": "3.0.2",
"description": "Fancy calendar for NativeScript :smile: :beers:",
"main": "calendar",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"ios": "3.2.0",
"android": "3.2.0"
}
},
"repository": {
"type": "git",
"url": "https://github.com/rhanbIT/nativescript-fancy-calendar.git"
},
"keywords": [
"NativeScript",
"JavaScript",
"TypeScript",
"Angular",
"Calendar",
"iOS",
"Material Design",
"Android"
],
"author": {
"name": "rhanb",
"email": "[email protected]"
},
"contributors": [
{
"name": "rhanb",
"email": "[email protected]"
},
{
"name": "mickaeleuranie",
"email": "[email protected]",
"url": "http://mickaeleuranie.com"
}
],
"bugs": {
"url": "https://github.com/rhanb/nativescript-fancy-calendar/issues"
},
"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 --emulator",
"test.ios": "cd demo && tns test ios --emulator",
"test.ios.device": "cd demo && tns test ios",
"test.android": "cd demo && tns test android",
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-fancy-calendar && tns plugin add .. && tns install",
"save": "cd demo && TNS_TYPESCRIPT_DECLARATIONS_PATH='$(pwd)/typingz' tns build ios"
},
"homepage": "https://github.com/rhanb/nativescript-fancy-calendar",
"readmeFilename": "README.md",
"devDependencies": {
"tns-core-modules": "^3.2.0",
"tns-platform-declarations": "^3.2.0",
"typescript": "^2.5.3"
},
"peerDependencies": {
"tns-core-modules": "^3.2.0"
}
}