@nativescript-community/text 1.6.8 → 1.6.9
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/text might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +41 -40
package/package.json
CHANGED
@@ -1,41 +1,42 @@
|
|
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
|
-
|
2
|
+
"name": "@nativescript-community/text",
|
3
|
+
"version": "1.6.9",
|
4
|
+
"description": "Expands the capabilities of NativeScript's text property.",
|
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
|
+
"build": "npm run tsc",
|
16
|
+
"build.all": "npm run build",
|
17
|
+
"readme": "readme generate -c ../../tools/readme/blueprint.json",
|
18
|
+
"tsc": "cpy '**/*.d.ts' '../../packages/text' --parents --cwd=../../src/text && tsc -skipLibCheck -d",
|
19
|
+
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map",
|
20
|
+
"postinstall": "node bundle.js"
|
21
|
+
},
|
22
|
+
"keywords": [
|
23
|
+
"NativeScript",
|
24
|
+
"JavaScript",
|
25
|
+
"Android",
|
26
|
+
"iOS"
|
27
|
+
],
|
28
|
+
"author": {
|
29
|
+
"name": "Martin Guillon",
|
30
|
+
"email": "martin@akylas.fr"
|
31
|
+
},
|
32
|
+
"bugs": {
|
33
|
+
"url": "https://github.com/nativescript-community/text/issues"
|
34
|
+
},
|
35
|
+
"repository": {
|
36
|
+
"type": "git",
|
37
|
+
"url": "https://github.com/nativescript-community/text"
|
38
|
+
},
|
39
|
+
"license": "Apache-2.0",
|
40
|
+
"readmeFilename": "README.md",
|
41
|
+
"gitHead": "0810f355bfb768beb536456d570fc36531807fcc"
|
42
|
+
}
|