forked from nativescript-community/ui-material-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.55 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
{
"name": "nativescript-material-components",
"version": "1.0.2",
"description": "Your awesome NativeScript plugin.",
"nativescript": {
"platforms": {
"android": "6.2.0",
"ios": "6.2.0"
}
},
"scripts": {
"publish": "lerna run tsc && lerna run ngc && lerna publish",
"build.plugin": "lerna run tsc && lerna run ngc",
"force_publish": "lerna publish from-package",
"increment_version": "lerna version",
"tsc": "lerna run tsc",
"tsc-win": "lerna run tsc-win",
"ngc": "lerna run ngc",
"clean": "rimraf packages/**/*.d.ts packages/**/*.js packages/**/*.js.map packages/core/android",
"demo.android": "cd ./demo && tns run android",
"demo.ios": "cd ./demo && tns run ios",
"build.demo.android": "cd ./demo && tns build android",
"build.demo.ios": "cd ./demo && tns build ios",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS"
],
"author": {
"name": "Martin Guillon",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Akylas/nativescript-material-components/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/Akylas/nativescript-material-components",
"readmeFilename": "README.md",
"devDependencies": {
"@angular/animations": "~8.2.12",
"@angular/common": "~8.2.12",
"@angular/compiler": "~8.2.12",
"@angular/compiler-cli": "~8.2.12",
"@angular/core": "~8.2.12",
"@angular/forms": "~8.2.12",
"@angular/http": "~7.2.15",
"@angular/platform-browser": "~8.2.12",
"@angular/platform-browser-dynamic": "~8.2.12",
"@angular/router": "~8.2.12",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@nativescript/angular":"rc",
"@nativescript/core":"rc",
"husky": "^3.0.9",
"lerna": "^3.18.3",
"nativescript-vue": "2.4.0",
"prettier": "^1.18.2",
"prompt": "^1.0.0",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"tns-platform-declarations": "rc",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.5.3",
"vue": "^2.6.10"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}