forked from xkjyeah/vue-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.62 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
{
"name": "vue2-google-maps",
"version": "0.7.7",
"description": "This is a google map component for Vue.js, updated for Vue 2 compatibility",
"main": "dist/main.js",
"scripts": {
"dev": "webpack-dev-server --inline --hot --quiet --port 9999",
"build-copy": "node ./build-copy.js",
"build-babel": "babel src --out-dir dist",
"build-webpack": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build": "npm run build-babel && npm run build-copy && npm run build-webpack",
"test": "npm run lint && npm run lab-tests",
"lint": "eslint --ext .vue,.js src && eslint --ext .vue,.html,.js examples",
"lab-tests": "lab -T node_modules/lab-babel -t 100 -S test",
"build-examples-webpack": "cd examples && webpack",
"build-examples-before": "npm run build && shx cp dist/vue-google-maps.js examples",
"build-examples": "npm run build-examples-before && npm run build-examples-webpack",
"deploy": "npm run build-examples && gh-pages -d examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xkjyeah/vue-google-maps.git"
},
"bugs": {
"url": "https://github.com/xkjyeah/vue-google-maps/issues"
},
"homepage": "https://github.com/xkjyeah/vue-google-maps#readme",
"dependencies": {
"marker-clusterer-plus": "^2.1.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-runtime": "^5.8.0"
},
"peerDependencies": {
"vue": "^2.2.1",
"lodash": "^4.15.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.1.2",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-stage-3": "^6.17.0",
"babel-runtime": "^5.8.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.0",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"file-loader": "^0.8.4",
"gh-pages": "^0.11.0",
"jsdom": "^9.8.3",
"lab": "^11.1.0",
"lab-babel": "^1.1.1",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"shx": "^0.2.0",
"style-loader": "^0.13.0",
"stylus-loader": "^1.4.0",
"template-html-loader": "0.0.3",
"vue": "^2.2.1",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "^11.1.3",
"vue-template-compiler": "^2.1.6",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"browserify": {
"transform": [
"babelify",
"vueify"
]
},
"author": "Daniel Sim, Guillaume Leclerc",
"license": "MIT"
}