-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "detect-keyboard-user",
"version": "1.0.1",
"description": "Detect if the user navigate with his keyboard or mouse. Then add a matching class to the html element. This allow to remove the blue outline for the mouse users and keeps it at the same time for the keyboard users.",
"main": "dist/detect-keyboard-user.js",
"unpkg": "dist/detect-keyboard-user.min.js",
"scripts": {
"start": "webpack"
},
"files": [
"dist"
],
"keywords": [
"keyboard",
"focus",
"ring",
"focus-ring",
"no-jquery",
"vanilla",
"vanilla-js"
],
"author": "Simon Arnold, <moi@smnarnold.com> (https://smnarnold.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/smnarnold/detect-keyboard-user.git"
},
"bugs": {
"url": "https://github.com/smnarnold/detect-keyboard-user/issues"
},
"homepage": "https://github.com/smnarnold/detect-keyboard-user#readme",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.10"
}
}