-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.8 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@kashio/vue-tooltip",
"version": "1.0.3",
"description": "Vue.js tooltip directive",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Kashio/vue-tooltip.git"
},
"keywords": [
"vue",
"tooltip",
"directive"
],
"author": "Roy Mor <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Kashio/vue-tooltip/issues"
},
"homepage": "https://github.com/Kashio/vue-tooltip#readme",
"dependencies": {
"jquery": "^3.1.1",
"vue": "^2.1.8"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-rewire": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^6.20.0",
"browser-sync": "^2.18.5",
"browser-sync-spa": "^1.0.3",
"coveralls": "^2.11.15",
"css-loader": "^0.26.1",
"cz-conventional-changelog": "^1.2.0",
"del": "^2.2.2",
"es6-shim": "^0.35.2",
"eslint": "^3.12.2",
"eslint-config-xo-space": "^0.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-html": "^1.7.0",
"extract-text-webpack-plugin": "^2.0.0-beta.3",
"file-loader": "^0.9.0",
"gulp": "gulpjs/gulp#4ed9a4a3275559c73a396eff7e1fde3824951ebb",
"gulp-filter": "^4.0.0",
"gulp-hub": "frankwallis/gulp-hub#d461b9c700df9010d0a8694e4af1fb96d9f38bf4",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^2.25.0",
"jasmine": "^2.5.2",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"node-sass": "^4.1.1",
"phantomjs-prebuilt": "^2.1.14",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.20"
},
"scripts": {
"build": "gulp",
"serve": "gulp serve",
"serve:dist": "gulp serve:dist",
"test": "gulp test",
"test:auto": "gulp test:auto",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish"
},
"eslintConfig": {
"root": true,
"rules": {
"linebreak-style": 0,
"quotes": 0,
"object-curly-spacing": 0
},
"env": {
"browser": true,
"jasmine": true,
"es6": true,
"phantomjs": true
},
"extends": [
"xo-space/esnext"
],
"plugins": [
"html"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}