forked from vinayakkulkarni/v-mapbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.28 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "v-mapbox",
"version": "1.7.0",
"private": false,
"sideEffects": [
"*.css"
],
"main": "dist/v-mapbox.js",
"module": "dist/v-mapbox.esm.js",
"unpkg": "dist/v-mapbox.min.js",
"jsdelivr": "dist/v-mapbox.min.js",
"cdn": "dist/v-mapbox.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "ava",
"test:snapshot": "ava --update-snapshots",
"build": "npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.config.js",
"bundle:min": "rollup -c build/rollup.config.min.js",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lintfix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint 'src/**/*.{js,vue}'",
"lint:eslint:fix": "eslint --fix 'src/**/*.{js,vue}'",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,vue}\"",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,vue}\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"release": "shipjs prepare"
},
"dependencies": {
"map-promisified": "^0.4.0"
},
"peerDependencies": {
"mapbox-gl": "^1.13.1",
"vue": "^2.6.12"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vue/test-utils": "^1.1.3",
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-vue": "^2.0.2",
"browser-env": "^3.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-vue": "^2.0.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"husky": "^4.3.8",
"jsdom-global": "^3.0.2",
"lint-staged": "^10.5.4",
"mapbox-gl": "^1.13.1",
"prettier": "^2.2.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0",
"rollup": "^2.44.0",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"shipjs": "^0.23.1",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.8.2"
},
"engines": {
"node": ">=12.18.3"
},
"author": {
"email": "[email protected]",
"name": "GeoSpoc Dev Team",
"url": "https://geospoc.com"
},
"contributors": [
{
"name": "Vinayak Kulkarni",
"email": "[email protected]",
"url": "https://vinayakkulkarni.dev"
},
{
"name": "soal",
"email": "[email protected]",
"url": "https://github.com/soal"
}
],
"repository": {
"type": "git",
"url": "[email protected]:geospoc/v-mapbox.git"
},
"keywords": [
"vue",
"vuejs",
"mapbox",
"mapbox-gl-js",
"mapbox-gl",
"mapbox-gl-geocoder"
],
"bugs": {
"url": "https://github.com/geospoc/v-mapbox/issues"
},
"homepage": "https://v-mapbox.geospoc.io/"
}