-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "vue-shortkey",
"description": "A vue-shortkey port for VueJS 3.x accepts shortcuts globaly and in a single listener.",
"version": "4.0.0",
"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/rodrigopv/vue3-shortkey"
},
"dependencies": {
"custom-event-polyfill": "^1.0.7",
"element-matches": "^0.1.2"
},
"keywords": [
"vue",
"vue3",
"vue-shortkey",
"vue3-shortkey",
"shortcut",
"shortkey"
],
"homepage": "https://github.com/rodrigopv/vue3-shortkey/blob/master/README.md",
"devDependencies": {
"array.prototype.find": "^2.1.1",
"babel-core": "^6.26.3",
"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.3.4",
"cross-env": "^3.0.0",
"karma": "^1.7.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.4",
"karma-webpack": "^2.0.13",
"mocha": "^3.4.2",
"nyc": "^11.9.0",
"sinon": "^3.3.0",
"sinon-chai": "^2.14.0",
"vue": "^3.0.0",
"webpack": "^3.12.0"
}
}