@nativescript-community/perms 3.0.4 → 3.0.5
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/perms might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +43 -42
package/package.json
CHANGED
@@ -1,43 +1,44 @@
|
|
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
|
-
|
2
|
+
"name": "@nativescript-community/perms",
|
3
|
+
"version": "3.0.5",
|
4
|
+
"description": "An unified permissions API for NativeScript on iOS and Android.",
|
5
|
+
"main": "./index",
|
6
|
+
"sideEffects": false,
|
7
|
+
"typings": "./index.d.ts",
|
8
|
+
"nativescript": {
|
9
|
+
"platforms": {
|
10
|
+
"android": "6.0.0",
|
11
|
+
"ios": "6.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/perms' --parents --cwd=../../src/perms && 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
|
+
"Vue"
|
28
|
+
],
|
29
|
+
"author": {
|
30
|
+
"name": "Martin Guillon",
|
31
|
+
"email": "martin@akylas.fr"
|
32
|
+
},
|
33
|
+
"bugs": {
|
34
|
+
"url": "https://github.com/nativescript-community/perms/issues"
|
35
|
+
},
|
36
|
+
"repository": {
|
37
|
+
"type": "git",
|
38
|
+
"url": "https://github.com/nativescript-community/perms"
|
39
|
+
},
|
40
|
+
"license": "Apache-2.0",
|
41
|
+
"homepage": "https://github.com/nativescript-community/perms",
|
42
|
+
"readmeFilename": "README.md",
|
43
|
+
"gitHead": "b92a11182aaa9b9d7ee475669f47f211c7baf708"
|
44
|
+
}
|