-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "dom-focus-lock",
"version": "1.1.0",
"description": "It is a trap! (for a focus)",
"author": "theKashey <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "umd/index.js",
"scripts": {
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"test": "ws --static.index example/testForm.html --open"
},
"files": [
"src",
"dist",
"umd"
],
"dependencies": {
"focus-lock": "^0.11.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"eslint": "^4.6.0",
"local-web-server": "^2.6.1",
"rollup": "^1.5.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.1"
},
"browserslist": [
"last 2 versions"
],
"keywords": [
"vanilla",
"dom",
"modals",
"focus",
"lock",
"trap",
"tabbable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/dom-focus-lock.git"
},
"bugs": {
"url": "https://github.com/theKashey/dom-focus-lock/issues"
},
"homepage": "https://github.com/theKashey/dom-focus-lock#readme"
}