forked from xkjyeah/vue-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.92 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
{
"name": "vue2-google-maps",
"version": "0.9.6",
"description": "This is a google map component for Vue.js, updated for Vue 2 compatibility",
"main": "dist/main.js",
"scripts": {
"build-babel": "shx mkdir -p dist && shx rm -r dist && cross-env BUILD_DEV=1 babel src -D --out-dir dist && echo {} > dist/.babelrc",
"build-webpack": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build": "yarn run build-babel && yarn run build-webpack",
"test": "yarn run lab-tests && yarn run lint",
"lint": "eslint --ext .vue,.js src && eslint --ext .vue,.html,.js test",
"lab-tests": "lab -T test/test-setup/babel-transform.js -l -S test",
"build-examples-webpack": "cd examples && cross-env NODE_ENV=production webpack",
"build-examples-before": "yarn run build && shx cp dist/vue-google-maps.js examples",
"build-examples": "yarn run build-examples-before && yarn run build-examples-webpack",
"deploy": "yarn run build-examples && gh-pages -d examples",
"prepare": "yarn run build"
},
"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": {
"babel-runtime": "^5.8.0",
"marker-clusterer-plus": "^2.1.4"
},
"peerDependencies": {
"vue": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-minify-dead-code-elimination": "^0.4.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^5.8.0",
"code": "^5.2.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",
"json-loader": "^0.5.7",
"lab": "^15.3.0",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"lodash": "^4.15.0",
"lodash-es": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"node-sass": "^4.8.3",
"puppeteer": "^1.1.0",
"raw-loader": "^0.5.1",
"sass-loader": "^7.0.1",
"shx": "^0.2.0",
"style-loader": "^0.13.0",
"stylus-loader": "^1.4.0",
"template-html-loader": "0.0.3",
"vue": "^2.5.0",
"vue-hot-reload-api": "^1.2.0",
"vue-html-loader": "^1.0.0",
"vue-loader": "^14.1.1",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.1.6",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"yaml-loader": "^0.5.0"
},
"author": "Daniel Sim, Guillaume Leclerc",
"license": "MIT"
}