forked from dealroom/react-arrow-key-navigation-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "react-arrow-key-navigation-hook",
"version": "1.0.1",
"description": "A React hook & associated functions to implement arrow key navigation through a component",
"main": "dist/hook.js",
"scripts": {
"build": "mkdir -p dist && npm run build-hook && npm run build-handleEvents",
"build-hook": "rollup src/hook.js -f cjs|uglifyjs --compress --mangle > dist/hook.js",
"build-handleEvents": "rollup src/handleEvents.js -f cjs|uglifyjs --compress --mangle > dist/handleEvents.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dealroom/react-arrow-key-navigation-hook.git"
},
"keywords": [
"react"
],
"author": "Ash Kyd <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dealroom/react-arrow-key-navigation-hook/issues"
},
"homepage": "https://github.com/dealroom/react-arrow-key-navigation-hook#readme",
"prettier": {},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"react": "^16.8.0",
"rollup": "^2.39.0",
"uglify-js": "^3.12.8"
},
"dependencies": {}
}