Update package.json
This commit is contained in:
98
package.json
98
package.json
@@ -1,29 +1,87 @@
|
||||
{
|
||||
"name": "@fawmi/vue-google-maps",
|
||||
"description": "Google Map components for Vue.js 3",
|
||||
"version": "0.2.6",
|
||||
"version": "0.3.0",
|
||||
"private": false,
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Tests are not implemented yet && exit 0"
|
||||
"main": "src/index.js",
|
||||
"browserify": {
|
||||
"transform": [
|
||||
"babelify",
|
||||
"vueify"
|
||||
]
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/xkjyeah/vue-google-maps/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"babel-runtime": "^6.26.0",
|
||||
"marker-clusterer-plus": "^2.1.4"
|
||||
},
|
||||
"deprecated": false,
|
||||
"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",
|
||||
"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.9.4",
|
||||
"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.2.2",
|
||||
"vue-router": "^2.7.0",
|
||||
"vue-template-compiler": "^2.1.6",
|
||||
"webpack": "^4.28.3",
|
||||
"webpack-cli": "^3.2.0",
|
||||
"yaml-loader": "^0.5.0"
|
||||
},
|
||||
"homepage": "https://vue-map.netlify.app/",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/fawmi/vue-google-maps.git"
|
||||
"url": "https://github.com/fawmi/vue-google-maps.git"
|
||||
},
|
||||
"keywords": [
|
||||
"vuejs3",
|
||||
"googlemaps",
|
||||
"vue 3 google maps",
|
||||
"vuejs3 google maps",
|
||||
"vue.js 3 google maps",
|
||||
"vue"
|
||||
],
|
||||
"author": "Fawad Mirzad",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/fawmi/vue-google-maps/issues"
|
||||
},
|
||||
"homepage": "https://vue-map.netlify.app",
|
||||
"dependencies": {}
|
||||
"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-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",
|
||||
"build-webpack": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
||||
"deploy": "npm run build-examples && gh-pages -d examples",
|
||||
"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",
|
||||
"prepare": "npm run build",
|
||||
"test": "npm run lab-tests && npm run lint"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user