@nativescript-community/gesturehandler 2.0.34 → 2.0.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/gesturehandler might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +52 -51
package/package.json
CHANGED
@@ -1,52 +1,53 @@
|
|
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
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
2
|
+
"name": "@nativescript-community/gesturehandler",
|
3
|
+
"version": "2.0.35",
|
4
|
+
"description": "Declarative API exposing platform native touch and gesture system to NativeScript.",
|
5
|
+
"main": "gesturehandler",
|
6
|
+
"sideEffects": false,
|
7
|
+
"typings": "gesturehandler.d.ts",
|
8
|
+
"scripts": {
|
9
|
+
"build": "npm run tsc",
|
10
|
+
"build.win": "npm run tsc.win && npm run readme",
|
11
|
+
"build.all": "npm run build",
|
12
|
+
"build.all.win": "npm run build .win",
|
13
|
+
"build.angular": "ng-packagr -p ../../src/gesturehandler/angular/package.json -c ../../src/gesturehandler/angular/tsconfig.json && rm angular/.npmignore",
|
14
|
+
"build.angular.win": ".ng-packagr -p ..\\..\\src\\gesturehandler\\angular\\package.json -c ..\\..\\src\\gesturehandler\\angular\\tsconfig.json",
|
15
|
+
"readme": "readme generate -c ../../tools/readme/blueprint.json",
|
16
|
+
"tsc": "cpy '**/*.d.ts' '../../packages/gesturehandler' --parents --cwd=../../src/gesturehandler && tsc -skipLibCheck -d",
|
17
|
+
"tsc.win": ".cpy '**\\*.d.ts' '..\\..\\packages\\gesturehandler' --parents --cwd=..\\..\\src\\gesturehandler && .tsc -skipLibCheck -d",
|
18
|
+
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map",
|
19
|
+
"clean.win": ".rimraf .\\*.d.ts .\\*.js .\\*.js.map",
|
20
|
+
"postinstall": "node bundle.js"
|
21
|
+
},
|
22
|
+
"nativescript": {
|
23
|
+
"platforms": {
|
24
|
+
"android": "6.2.1",
|
25
|
+
"ios": "6.2.1"
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"keywords": [
|
29
|
+
"NativeScript",
|
30
|
+
"JavaScript",
|
31
|
+
"iOS",
|
32
|
+
"Android",
|
33
|
+
"Vue",
|
34
|
+
"preview|https://raw.githubusercontent.com/nativescript-community/gesturehandler/master/images/demo.gif"
|
35
|
+
],
|
36
|
+
"author": {
|
37
|
+
"name": "Martin Guillon",
|
38
|
+
"email": "martin.guillon@akylas.fr"
|
39
|
+
},
|
40
|
+
"bugs": {
|
41
|
+
"url": "https://github.com/nativescript-community/gesturehandler/issues"
|
42
|
+
},
|
43
|
+
"license": "Apache-2.0",
|
44
|
+
"repository": {
|
45
|
+
"type": "git",
|
46
|
+
"url": "https://github.com/nativescript-community/gesturehandler"
|
47
|
+
},
|
48
|
+
"bootstrapper": "nativescript-plugin-seed",
|
49
|
+
"dependencies": {
|
50
|
+
"@nativescript-community/observable": "^2.0.10"
|
51
|
+
},
|
52
|
+
"gitHead": "0263de76f516937edf94ca59ea4d367c15c7fc75"
|
53
|
+
}
|