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

91 lines
2.6 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.",
"version": "3.7.3",
7 years ago
"main": "index.js",
"types": "index.d.ts",
"module": "dist/hotkeys.esm.js",
"scripts": {
"lint": "eslint --ext .js src website",
"deploy": "node scripts/build.js && npm run doc:build && gh-pages -d doc",
6 years ago
"build": "node scripts/build.js && npm run doc:build",
7 years ago
"watch": "node scripts/watch.js",
"pretest": "npm run build",
6 years ago
"test": "jest --coverage",
7 years ago
"test:watch": "jest --watch",
7 years ago
"doc": "npm run doc:dev",
"doc:dev": "cross-env NODE_ENV=development parcel website/index.html --out-dir doc --no-cache",
"doc:build": "rimraf doc && cross-env NODE_ENV=production parcel build website/index.html --out-dir doc --public-url ./ --no-cache --no-source-maps"
},
"files": [
"index.d.ts",
"dist",
"doc"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
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",
"homepage": "http://jaywcjlove.github.io/hotkeys",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/hotkeys.git"
},
6 years ago
"jest": {
"testURL": "http://localhost/"
},
7 years ago
"dependencies": {},
10 years ago
"devDependencies": {
"@babel/core": "^7.7.2",
6 years ago
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@uiw/react-github-corners": "^1.0.8",
"autoprefixer": "^8.6.1",
7 years ago
"babel-eslint": "^8.2.3",
"bannerjs": "^1.0.5",
7 years ago
"classnames": "^2.2.5",
"colors-cli": "^1.0.26",
"cross-env": "^6.0.3",
7 years ago
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"gh-pages": "^1.2.0",
"highlight.js": "^9.16.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"less": "^3.10.3",
"parcel-bundler": "^1.12.4",
"parcel-plugin-markdown-string": "^1.4.2",
7 years ago
"postcss-modules": "^1.1.0",
"puppeteer": "^1.20.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-markdown": "^3.3.2",
"rimraf": "^2.7.1",
"rollup": "^1.27.4",
"rollup-plugin-babel": "^4.3.3",
6 years ago
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"uglify-js": "^3.6.9",
7 years ago
"zlib": "^1.0.5"
}
}