-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
65 lines (65 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
{
"name": "react-keydown",
"version": "1.9.12",
"description": "Lightweight keydown wrapper for React components",
"main": "dist/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"scripts": {
"build": "BABEL_ENV=production babel -d ./dist ./src",
"build:es": "babel -d ./es ./src",
"build:es:watch": "babel --watch -d ./es ./src",
"prepublish": "npm run build & npm run build:es",
"test": "BABEL_ENV=testing babel-node node_modules/.bin/tape tests/*.js | node_modules/.bin/tap-difflet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glortho/react-keydown.git"
},
"keywords": [
"react",
"react-component",
"decorator",
"higher-order-component",
"keypress",
"keydown",
"keyboard",
"keynav",
"key-navigation"
],
"author": "Jed Verity",
"contributors": [
{
"name": "Salman Mitha",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/glortho/react-keydown/issues"
},
"homepage": "https://github.com/glortho/react-keydown#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "6.x",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^5.16.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"tap-difflet": "^0.4.0",
"tape": "^4.10.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"peerDependencies": {
"react": ">= 0.14.0",
"react-dom": ">= 0.14.0"
},
"dependencies": {
"core-js": "^3.1.2"
}
}