-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.85 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
66
67
68
69
{
"name": "@davidwieler/keybindings",
"version": "0.0.10",
"description": "",
"main": "./dist/index.js",
"scripts": {
"build": "webpack --mode production --config webpack/webpack.config.js && tsc",
"build-dev": "webpack --mode development --config webpack/webpack.config.js && tsc",
"start": "webpack-dev-server -d --progress --mode development --config webpack/webpack.dev.js",
"test": "jest",
"release": "yarn build && tsc && node ./scripts/release.js"
},
"author": "David Wieler",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidwieler/keybindings/issues"
},
"homepage": "https://github.com/davidwieler/keybindings",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.7.2",
"@types/jest": "^24.0.23",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"npm": "^6.13.0",
"prettier": "^1.18.2",
"sass-loader": "^8.0.0",
"source-map": "^0.7.3",
"terser": "^4.4.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0",
"yargs": "^14.2.0"
},
"keywords": [
"event listeners",
"keybindings",
"keybinds",
"keycode",
"keycodes",
"keycombo",
"keydown",
"keyup",
"code",
"combo",
"event",
"listeners",
"hotkey",
"key",
"mousetrap",
"shortcut",
"which"
]
}