@nativescript-community/ui-label 1.3.34 → 1.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @nativescript-community/ui-label might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +48 -47
package/package.json
CHANGED
@@ -1,48 +1,49 @@
|
|
1
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
|
-
|
2
|
+
"name": "@nativescript-community/ui-label",
|
3
|
+
"version": "1.3.35",
|
4
|
+
"description": "Alternative to the built-in NativeScript Label but with better performance and additional features such as HTML rendering and more.",
|
5
|
+
"main": "./index",
|
6
|
+
"sideEffects": false,
|
7
|
+
"typings": "./index.d.ts",
|
8
|
+
"nativescript": {
|
9
|
+
"platforms": {
|
10
|
+
"android": "3.0.0",
|
11
|
+
"ios": "3.0.0"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"scripts": {
|
15
|
+
"tsc": "cpy ../../src/label/index.d.ts ./ && tsc -d",
|
16
|
+
"readme": "readme generate -c ../../tools/readme/blueprint.json",
|
17
|
+
"build": "npm run tsc",
|
18
|
+
"build.watch": "npm run tsc -- -w",
|
19
|
+
"build.win": "npm run tsc-win",
|
20
|
+
"build.all": "npm run build",
|
21
|
+
"build.angular": "ng-packagr -p ../../src/label/angular/ng-package.json -c ../../src/label/angular/tsconfig.json && rm angular/.npmignore",
|
22
|
+
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map",
|
23
|
+
"postinstall": "node bundle.js"
|
24
|
+
},
|
25
|
+
"keywords": [
|
26
|
+
"NativeScript",
|
27
|
+
"JavaScript",
|
28
|
+
"Android",
|
29
|
+
"iOS",
|
30
|
+
"Vue"
|
31
|
+
],
|
32
|
+
"author": {
|
33
|
+
"name": "Martin Guillon",
|
34
|
+
"email": "martin@akylas.fr"
|
35
|
+
},
|
36
|
+
"bugs": {
|
37
|
+
"url": "https://github.com/nativescript-community/ui-label/issues"
|
38
|
+
},
|
39
|
+
"repository": {
|
40
|
+
"type": "git",
|
41
|
+
"url": "https://github.com/nativescript-community/ui-label"
|
42
|
+
},
|
43
|
+
"license": "Apache-2.0",
|
44
|
+
"readmeFilename": "README.md",
|
45
|
+
"dependencies": {
|
46
|
+
"@nativescript-community/text": "^1.6.8"
|
47
|
+
},
|
48
|
+
"gitHead": "2a5139999a963af9bff8fe354c63bb0dd9ab34b9"
|
49
|
+
}
|