-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
91 lines (91 loc) · 2.5 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
90
91
{
"name": "vue-azure-maps",
"description": "Integrate Azure Maps in your Vue application",
"version": "0.0.30",
"author": {
"name": "Ricardo Ruiz",
"email": "[email protected]"
},
"keywords": [
"vue",
"vuejs",
"plugin",
"azure",
"maps",
"azure-maps"
],
"license": "MIT",
"main": "dist/vue-azure-maps.umd.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rickyruiz/vue-azure-maps.git"
},
"bugs": {
"url": "https://github.com/rickyruiz/vue-azure-maps/issues"
},
"homepage": "https://rickyruiz.github.io/vue-azure-maps/",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:lib": "vue-cli-service build --target lib --name vue-azure-maps src/plugin/index.ts",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"docs:dev": "vuepress dev vuepress",
"docs:build": "vuepress build vuepress -d docs",
"docs:clean:win": "powershell rd -r docs/**",
"docs:clean:mac": "rm -rf docs/**",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"release": "node scripts/release.js"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"dependencies": {
"azure-maps-control": "^2.0.31",
"vue": "^2.6.12"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-plugin-unit-jest": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.0-beta.32",
"chalk": "^3.0.0",
"conventional-changelog-cli": "^2.0.31",
"enquirer": "^2.3.4",
"eslint": "6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "6.2.2",
"execa": "^4.0.0",
"jest": "^25.2.4",
"lint-staged": "^10.1.1",
"minimist": "^1.2.5",
"prettier": "^2.0.2",
"semver": "^7.1.3",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.4.0"
},
"peerDependencies": {
"vue": "^2.6.12"
}
}