forked from xkjyeah/vue-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.82 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
{
"name": "@inventory-shield/vue2-google-maps",
"version": "0.12.2",
"description": "This is a google map component for Vue.js, updated for Vue 2 compatibility",
"main": "dist/main.js",
"scripts": {
"build": "npm run build:babel && npm run build:webpack",
"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:examples": "npm run build:examples:before && npm run build:examples:webpack",
"build:examples:before": "npm run build && shx cp dist/vue-google-maps.js examples",
"build:examples:webpack": "cd examples && cross-env NODE_ENV=production webpack",
"lab:tests": "lab -T test/test-setup/babel-transform.js -l -S test",
"lint": "eslint --ext .vue,.js src && eslint --ext .vue,.html,.js test",
"lint:fix": "eslint --fix --ext .vue,.js src && eslint --ext .vue,.html,.js test",
"test": "npm run lab:tests && npm run lint",
"deploy": "npm run build:examples && gh-pages -d examples",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inventory-Shield/vue-google-maps.git"
},
"bugs": {
"url": "https://github.com/Inventory-Shield/vue-google-maps/issues"
},
"homepage": "https://github.com/Inventory-Shield/vue-google-maps#readme",
"dependencies": {
"@googlemaps/markerclustererplus": "^1.1.0"
},
"peerDependencies": {
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@hapi/lab": "^20.4.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"consolidate": "^0.15.1",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.2.0",
"gh-pages": "^2.1.1",
"json-loader": "^0.5.7",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"puppeteer": "^1.20.0",
"raw-loader": "^3.1.0",
"shx": "^0.3.2",
"style-loader": "^1.0.0",
"template-html-loader": "1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.12",
"vue-loader": "^15.7.1",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"yaml-loader": "^0.5.0"
},
"author": "Daniel Sim, Guillaume Leclerc",
"license": "MIT"
}