-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "react-tab-hotkey-replacer",
"version": "1.0.0",
"description": "React component which can replacte the Tab Key behaviour with enter or another keyboard key",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "babel ./src --out-dir ./dist -s inline"
},
"keywords": [
"react-tab-hotkey-replacer",
"react-tab-key-replacer",
"tab-key-replacer",
"tab-enter-replace",
"replace-tab-key-to-enter",
"replace-tab-with-enter",
"replace-tab-hotkey",
"tab-shortcut-replacer"
],
"author": "Jasmin Miftari",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0"
},
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"keycode": "^2.2.0"
}
}