forked from soal/vue-mapbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.41 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
{
"name": "vue-mapbox",
"version": "0.4.1",
"author": {
"name": "soal",
"email": "[email protected]",
"url": "https://github.com/soal"
},
"homepage": "https://soal.github.io/vue-mapbox",
"repository": {
"type": "git",
"url": "https://github.com/soal/vue-mapbox.git"
},
"private": false,
"main": "dist/vue-mapbox.umd.js",
"module": "src/main.js",
"scripts": {
"build": "vue-cli-service build --target lib --name vue-mapbox src/main.js",
"serve": "vue-cli-service build --target lib --name vue-mapbox src/main.js --watch",
"lint": "vue-cli-service lint",
"docs:serve": "vuepress dev docs_source",
"docs:build": "vuepress build docs_source"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"map-promisified": "latest"
},
"peerDependencies": {
"mapbox-gl": "^0.53.0",
"vue": "^2.6.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.1",
"@vue/cli-service": "^3.2.0",
"@vue/eslint-config-prettier": "^4.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-loader": "2.1.1",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"vue": "^2.6.6",
"vue-template-compiler": "^2.6.6",
"vuepress": "^1.0.0-alpha.37"
}
}