This repository was archived by the owner on Apr 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 KB
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
{
"name": "browser-ui-state",
"version": "1.1.28",
"description": "Library which allows to determine current browser UI state (address bar visibility, on-screen keyboard, etc)",
"main": "dist/browser-ui-state.js",
"module": "dist/browser-ui-state.js",
"files": [
"dist/browser-ui-state.js",
"src"
],
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p && npm run test",
"test": "./node_modules/.bin/cucumber.js --compiler js:babel-core/register",
"prepare": "npm run build"
},
"author": "Andriy Halyasovskyy (https://github.com/TheBit)",
"contributors": [
"Volodymyr Vyshko (https://github.com/vyshkov)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/device-hackers/browser-ui-state.git"
},
"bugs": "https://github.com/device-hackers/browser-ui-state/issues",
"homepage": "https://github.com/device-hackers/browser-ui-state",
"keywords": [
"mobile",
"browser"
],
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"copy-webpack-plugin": "^4.1.1",
"cucumber": "^3.0.4",
"html-webpack-plugin": "^2.29.0",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"chai": "^4.1.2",
"fscreen": "^1.0.1"
}
}