-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.36 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.36 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
{
"name": "nativescript-centered-label",
"version": "1.0.0",
"description": "NativeScript plugin that provide Label that are horizontally and vertically centered.",
"main": "centered-label",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "6.0.0",
"ios": "6.0.1"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mhtghn/nativescript-centered-label.git"
},
"scripts": {
"tsc": "npm i && tsc",
"build": "npm run tsc && npm run build.native",
"build.native": "node scripts/build-native.js",
"tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\"",
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**' --exclude '**/platforms/**'",
"prepack": "npm run build.native",
"demo.ios": "npm run tsc && cd ../demo && tns run ios --emulator",
"demo.android": "npm run tsc && cd ../demo && tns run android --emulator",
"demo.reset": "cd ../demo && npx rimraf -- hooks node_modules platforms package-lock.json",
"demo-angular.ios": "npm run tsc && cd ../demo-angular && tns run ios --emulator",
"demo-angular.android": "npm run tsc && cd ../demo-angular && tns run android --emulator",
"demo-angular.reset": "cd ../demo-angular && npx rimraf -- hooks node_modules platforms package-lock.json",
"plugin.prepare": "npm run build && cd ../demo && tns plugin remove nativescript-centered-label && tns plugin add ../src && cd ../demo-angular && tns plugin remove nativescript-centered-label && tns plugin add ../src",
"clean": "npm run demo.reset && npm run demo-angular.reset && npx rimraf -- node_modules package-lock.json && npm i"
},
"keywords": [
"NativeScript",
"JavaScript",
"Angular",
"TypeScript",
"Label",
"Center",
"Android",
"iOS"
],
"author": {
"name": "Mahamat Guihini",
"email": "mhtghn@gmail.com"
},
"bugs": {
"url": "https://github.com/mhtghn/nativescript-centered-label/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/mhtghn/nativescript-centered-label",
"devDependencies": {
"tns-core-modules": "^6.0.0",
"tns-platform-declarations": "^6.0.0",
"typescript": "~3.4.5",
"prompt": "^1.0.0",
"rimraf": "^2.6.3",
"tslint": "^5.12.1",
"semver": "^5.6.0",
"nativescript-angular": "^8.2.1",
"@angular/core": "^11.0.5"
},
"dependencies": {},
"bootstrapper": "nativescript-plugin-seed"
}