-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.14 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
{
"name": "vue-medusa",
"version": "1.0.0",
"description": "A small wrapper for integrating medusa to Vuejs",
"main": "dist/vue-medusa.min.js",
"types": "index.d.ts",
"scripts": {
"test": "npx xo",
"build": "npx gulp",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OmgImAlexis/vue-medusa.git"
},
"keywords": [
"vue",
"medusa",
"vue-medusa",
"http",
"$http",
"vue plugin",
"wrapper"
],
"author": "Alexis Tyler <[email protected]> (https://wvvw.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/OmgImAlexis/vue-medusa/issues"
},
"homepage": "https://wvvw.me",
"dependencies": {
"medusa-lib": "*"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglifyjs": "^0.6.2",
"vue": "^2.5.13"
},
"peerDependencies": {
"vue": ">= 1.0.0"
},
"xo": {
"envs": [
"browser",
"node"
],
"globals": [
"define",
"Vue"
]
}
}