-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "@codekraft-studio/vue-google-map",
"version": "0.1.6-rc.0",
"description": "A set of Google Map components for VueJs",
"author": {
"name": "codekraft-studio",
"email": "[email protected]",
"url": "https://github.com/codekraft-studio"
},
"scripts": {
"prepublishOnly": "npm run build",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name VueGoogleMap ./lib/index.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint ./lib",
"build:demo": "vue-cli-service build --mode demo --dest demo",
"publish:demo": "git subtree push --prefix demo origin gh-pages"
},
"main": "./dist/VueGoogleMap.umd.js",
"files": [
"dist"
],
"dependencies": {
"core-js": "^3.3.2",
"vue": "^2.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.0.0",
"eslint": "^4.19.1",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^9.4.2",
"node-sass": "^4.11.0",
"sass-loader": "^7.0.1",
"vue-material": "1.0.0-beta-7",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/codekraft-studio/vue-google-map",
"keywords": [
"vue",
"vue-plugin",
"vue-components",
"googlemap",
"google-map"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"publishConfig": {
"access": "public"
}
}