| Current Path : /etc/kibana/node_modules/focus-trap/ |
| Current File : //etc/kibana/node_modules/focus-trap/package.json |
{
"name": "focus-trap",
"version": "2.4.5",
"description": "Trap focus within a DOM node.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"demo-bundle": "browserify demo/js/index.js -o demo/demo-bundle.js",
"clean": "del-cli dist && make-dir dist",
"build-dev": "npm run clean && browserify index.js -s focusTrap > dist/focus-trap.js",
"minify": "uglifyjs dist/focus-trap.js > dist/focus-trap.min.js",
"build": "npm run build-dev && npm run minify",
"start": "budo demo/js/index.js:demo-bundle.js --dir demo --live",
"test": "npm run lint",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtheclark/focus-trap.git"
},
"keywords": [
"focus",
"accessibility",
"trap",
"capture",
"keyboard",
"modal"
],
"author": "David Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/focus-trap/issues"
},
"homepage": "https://github.com/davidtheclark/focus-trap#readme",
"dependencies": {
"tabbable": "^1.0.3"
},
"devDependencies": {
"browserify": "^13.3.0",
"budo": "^9.4.1",
"del-cli": "^1.1.0",
"eslint": "^3.13.1",
"make-dir-cli": "^1.0.0",
"uglify-js": "^3.3.22"
},
"files": [
"dist",
"index.js",
"index.d.ts"
]
}