forked from semmel/on-screen-keyboard-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 KB
/
package.json
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
{
"author": "Matthias Seemann <seemann@visisoft.de> (https://github.com/semmel/)",
"bugs": {
"url": "https://github.com/semmel/on-screen-keyboard-detector/issues"
},
"dependencies": {
"@most/adapter": "^1.0.0",
"@most/core": "^1.6.1",
"@most/dom-event": "^2.2.0",
"@most/prelude": "^1.8.0",
"@most/scheduler": "^1.3.0",
"ramda": "^0.27.1"
},
"description": "Detects presence of the On-Screen-Keyboard in mobile browsers",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"es-module-shims": "^0.10.3"
},
"files": [
"/dist",
"/src",
"/doc/browser_viewports.png"
],
"exports": {
".": {
"require": "./dist/oskd.js",
"default": "./src/osk-detector.js"
}
},
"homepage": "https://github.com/semmel/on-screen-keyboard-detector#readme",
"keywords": [
"keyboard",
"on-screen",
"virtual",
"detector",
"visibility",
"android",
"ios"
],
"license": "MIT",
"main": "src/osk-detector.js",
"name": "on-screen-keyboard-detector",
"peerDependencies": {
"emittery": "^0.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semmel/on-screen-keyboard-detector.git"
},
"scripts": {
"build": "rollup -c",
"demo:prepare": "rollup --config rollup.emittery2esm.config.js",
"prepack": "npm run build",
"setup_test": "adb tcpip 5555 && adb connect 192.168.7.184",
"test:chrome": "SELENIUM_BROWSER=chrome TEST_SERVER=http://192.168.7.171:8081 mocha test/simple_text_input.js",
"test:ios": "SELENIUM_BROWSER=safari TEST_SERVER=http://192.168.7.171:8081 mocha test/simple_text_input.js"
},
"type": "module",
"types": "./src/osk-detector.d.ts",
"version": "2.2.0"
}