forked from diegoazh/gmap-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.09 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
{
"name": "gmap-vue",
"version": "1.4.1",
"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": "rimraf ./dist && shx mkdir -p ./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:webpack && npm run build:examples:after",
"build:examples:after": "npm run build && shx cp ./dist/gmap-vue.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": "prettier --write src test && eslint --fix --ext .vue,.js src && eslint --fix --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",
"pre-commit": "lint-staged",
"docs": "jsdoc -c 'jsdoc.json'"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/diegoazh/gmap-vue.git"
},
"bugs": {
"url": "https://github.com/diegoazh/gmap-vue/issues"
},
"homepage": "https://github.com/diegoazh/gmap-vue#readme",
"dependencies": {
"@google/markerclustererplus": "^5.1.3"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@hapi/lab": "^22.0.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"better-docs": "^2.3.0",
"consolidate": "^0.15.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"husky": ">=4",
"jsdoc": "^3.6.5",
"json-loader": "^0.5.7",
"lerna": "^3.20.2",
"lint-staged": ">=10",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"puppeteer": "^3.0.0",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"shx": "^0.3.2",
"style-loader": "^1.1.4",
"template-html-loader": "1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.1",
"vue-router": "^3.1.6",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"yaml-loader": "^0.6.0"
},
"author": "Daniel Sim, Guillaume Leclerc",
"license": "MIT"
}