forked from fgr-araujo/vue-shortkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "vue-shortkey",
"description": "A plugin for VueJS 2.x accepts shortcuts globaly and in a single listener.",
"version": "3.1.8",
"author": "iFgR <ifgr.fagner@gmail.com>",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production node build/build.js",
"test": "karma start test/karma.conf.js --single-run",
"coverage": "nyc mocha test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iFgR/vue-shortkey.git"
},
"dependencies": {
"custom-event-polyfill": "^1.0.7",
"element-matches": "^0.1.2"
},
"keywords": [
"vue",
"vue-shortkey",
"shortcut",
"shortkey"
],
"homepage": "https://github.com/iFgR/vue-shortkey/blob/master/README.md",
"devDependencies": {
"array.prototype.find": "^2.0.4",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"cross-env": "^3.0.0",
"karma": "^1.7.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.1",
"karma-webpack": "^2.0.4",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"vue": "^2.1.0",
"webpack": "^3.0.0"
}
}