-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.75 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
{
"name": "keypress-combination",
"keywords": ["keypress", "combination", "keydown"],
"main": "lib/index.js",
"version": "0.9.2",
"description": "Attach listeners to keypress combinations like CTRL-1. Lightweight and well documented.",
"directories": {
"test": "test"
},
"peerDependencies": {
},
"devDependencies": {
"assert": "*",
"babel":"^6.1.18",
"babel-cli":"6.2.0",
"babel-preset-es2015": "*",
"babel-preset-stage-1": "*",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.1.1",
"isparta-loader": "*",
"expose-loader": "*",
"transform-loader": "*",
"envify": "*",
"karma": "*",
"karma-chrome-launcher": "*",
"karma-firefox-launcher": "*",
"karma-mocha": "*",
"karma-sourcemap-loader": "*",
"karma-webpack": "*",
"karma-browserstack-launcher": "*",
"karma-coveralls": "*",
"karma-coverage": "*",
"mocha-babel": "*",
"webpack": "*",
"mocha": "*"
},
"scripts": {
"example": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --content-base example/ --config ./example/webpack.example.config.js",
"test": "./node_modules/karma/bin/karma start test/karma.conf.js",
"build": "doctoc . --github --title '<h1>Table of Contents</h1>'; ./node_modules/babel-cli/bin/babel.js --presets es2015,stage-1 --plugins add-module-exports ./src --out-dir ./lib; ./node_modules/webpack/bin/webpack.js --config webpack.standalone.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushtell/keypress-combination.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushtell/keypress-combination/issues"
},
"homepage": "https://github.com/pushtell/keypress-combination#readme"
}