forked from soal/vue-mapbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·69 lines (69 loc) · 1.8 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
{
"name": "mapir-vue",
"version": "2.2.12",
"author": {
"name": "Mohammad H. Sattarian",
"email": "[email protected]",
"url": "https://github.com/mhsattarian"
},
"contributors": [
{
"name": "Reyhaneh Masoumi",
"email": "[email protected]",
"url": "https://github.com/ReyhaneMasumi"
}
],
"homepage": "https://github.com/map-ir/mapir-vue",
"repository": {
"type": "git",
"url": "https://github.com/map-ir/mapir-vue.git"
},
"private": false,
"main": "dist/mapir-vue.umd.js",
"module": "src/main.js",
"scripts": {
"start": "npm run serve",
"build": "cross-env vue-cli-service build --target lib --name mapir-vue src/main.js",
"serve": "cross-env vue-cli-service build --target lib --name mapir-vue 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": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@vuepress/plugin-register-components": "^1.2.0",
"babel-loader": "^7.1.5",
"map-promisified": "latest",
"mapbox-gl": "^1.6.0"
},
"peerDependencies": {
"mapbox-gl": "^1.6.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",
"cross-env": "^6.0.3",
"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.2.0"
}
}