You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hotkeys/package.json

37 lines
1022 B
JSON

10 years ago
{
10 years ago
"name": "hotkeys-js",
"version": "2.0.1",
10 years ago
"description": "A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.",
"main": "dist/hotkeys.min.js",
"scripts": {
"build:min": "umd hotkeys src/hotkeys.js | uglifyjs -mc | bannerjs -o > dist/hotkeys.min.js",
"build:dist": "umd hotkeys src/hotkeys.js | bannerjs -m | uglifyjs -b beautify=true --comments 'all' > dist/hotkeys.js ",
"build": "npm run build:min && npm run build:dist",
"watch": "onchange 'src/hotkeys.js' -v -- npm run build "
},
10 years ago
"keywords": [
"hotkey",
10 years ago
"hotkeys",
"hotkeys-js",
"hotkeysjs",
10 years ago
"key",
10 years ago
"keys",
"keyboard",
"shortcuts"
10 years ago
],
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/hotkeys.git"
},
"devDependencies": {
"bannerjs": "^1.0.5",
"browserify": "^13.1.1",
"onchange": "^3.2.0",
"ssr": "^1.1.1",
"tape": "^4.6.3",
"tape-dom": "0.0.12",
"uglify-js": "^2.7.5",
"umd": "^3.0.1"
10 years ago
}
}