forked from twcapps/vue-spatialnavigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "vue-spatialnavigation",
"version": "1.2.1",
"description": "Spatial navigation support for VueJS",
"keywords": [
"vue",
"spatial navigation",
"navigation",
"tv",
"typescript",
"keyboard",
"vue-spatialnavigation"
],
"main": "./lib/focus.directive.js",
"types": "./lib/focus.directive.d.ts",
"author": {
"name": "Bart van den Ende",
"email": "[email protected]",
"url": "http://www.twcapps.com"
},
"license": "MIT",
"repository": "https://github.com/twcapps/vue-spatialnavigation",
"bugs": {
"url": "https://github.com/twcapps/vue-spatialnavigation/issues"
},
"homepage": "https://github.com/twcapps/vue-spatialnavigation",
"dependencies": {
"vue": "^2.5.16"
},
"scripts": {
"build": "gulp build",
"pretest": "npm run build",
"prepublish": "npm run build",
"e2e": "node test/e2e/runner.js",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"release": "release-it --github.release --npm.publish --non-interactive",
"release-minor": "release-it --github.release --npm.publish --non-interactive --increment minor",
"release-major": "release-it --github.release --npm.publish --non-interactive --increment major",
"release-patch": "release-it --github.release --npm.publish --non-interactive --increment patch"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-typescript": "^3.1.6",
"merge2": "^1.0.3",
"release-it": "^7.3.0",
"tslint": "^5.1.0",
"typescript": "^2.8.1",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0",
"babel-register": "^6.22.0",
"chromedriver": "^2.27.2",
"cross-spawn": "^5.0.1",
"nightwatch": "^0.9.12",
"selenium-server": "^3.0.1",
"babel-jest": "^21.0.2",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"jest": "^22.0.4",
"jest-serializer-vue": "^0.3.0",
"typescript-babel-jest": "^1.0.5",
"vue-jest": "^1.0.2",
"@types/jest": "^22.0.1"
}
}