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

62 lines
1.7 KiB
JSON

10 years ago
{
10 years ago
"name": "hotkeys-js",
10 years ago
"description": "A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.",
7 years ago
"version": "3.0.1",
7 years ago
"main": "index.js",
"scripts": {
"deploy": "gh-pages -d build",
7 years ago
"build": "node scripts/build.js",
"watch": "node scripts/watch.js",
"pretest": "npm run build",
7 years ago
"test": "jest --coverage",
"test:watch": "jest --watch",
"doc:dev": "NODE_ENV=development parcel website/index.html --out-dir build/ --no-cache",
"doc:build": "NODE_ENV=production parcel build website/index.html --out-dir build/ --public-url ./ --no-cache"
},
10 years ago
"keywords": [
"hotkey",
10 years ago
"hotkeys",
"hotkeys-js",
"hotkeysjs",
10 years ago
"key",
10 years ago
"keys",
"keyboard",
8 years ago
"shortcuts",
"keypress"
10 years ago
],
7 years ago
"author": "kenny wong <wowohoo@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/hotkeys.git"
},
7 years ago
"dependencies": {},
10 years ago
"devDependencies": {
7 years ago
"autoprefixer": "^8.1.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bannerjs": "^1.0.5",
7 years ago
"classnames": "^2.2.5",
"colors-cli": "^1.0.13",
"gh-pages": "^1.1.0",
7 years ago
"highlight.js": "^9.12.0",
7 years ago
"jest": "^22.4.2",
7 years ago
"less": "^3.0.1",
"parcel-bundler": "^1.6.2",
"parcel-plugin-markdown-string": "^1.3.1",
"postcss-modules": "^1.1.0",
7 years ago
"puppeteer": "^1.2.0",
7 years ago
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-markdown": "^3.3.0",
"rollup": "^0.57.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.2.0",
"uglify-js": "^3.3.15",
"zlib": "^1.0.5"
}
}