forked from vinayakkulkarni/v-mapbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.35 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "v-mapbox",
"version": "1.10.1",
"description": "Mapbox with Vue 💚",
"types": "types/index.d.ts",
"main": "dist/v-mapbox.cjs.js",
"module": "dist/v-mapbox.esm.js",
"unpkg": "dist/v-mapbox.js",
"jsdelivr": "dist/v-mapbox.js",
"cdn": "dist/v-mapbox.js",
"files": [
"dist",
"types"
],
"scripts": {
"build": "rimraf dist && npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.config.ts",
"bundle:min": "rollup -c build/rollup.config.min.ts",
"test": "echo 'test!'",
"prepare": "husky install",
"docs:dev": "export NODE_OPTIONS=--openssl-legacy-provider; vuepress dev docs",
"docs:build": "export NODE_OPTIONS=--openssl-legacy-provider; vuepress build docs",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:css",
"lintfix": "npm run lint:prettier:fix && npm run lint:eslint:fix && npm run lint:css:fix",
"lint:js": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:css": "stylelint \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"lint:css:fix": "stylelint --fix \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"release": "shipjs prepare",
"release:auto": "shipjs prepare --yes",
"release:dry": "shipjs prepare --dry-run"
},
"dependencies": {
"map-promisified": "^0.4.0"
},
"peerDependencies": {
"@vue/composition-api": "^1.4.1",
"mapbox-gl": "1.13.2",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-beep": "^0.2.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-sucrase": "^4.0.1",
"@types/mapbox-gl": "1.13.2",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/composition-api": "^1.4.1",
"@vue/runtime-dom": "^3.2.24",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mapbox-gl": "1.13.2",
"prettier": "^2.5.1",
"rollup": "^2.60.2",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "5.1.9",
"sass": "^1.44.0",
"shipjs": "^0.24.0",
"stylelint": "^14.1.0",
"stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "^4.5.2",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vuepress": "^1.8.2"
},
"keywords": [
"vue",
"vuejs",
"mapbox",
"mapbox-gl-js",
"mapbox-gl",
"mapbox-gl-geocoder"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=16.5.0",
"npm": ">=7.20.0"
},
"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"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:geospoc/v-mapbox.git"
},
"private": false,
"sideEffects": [
"*.css"
],
"bugs": {
"url": "https://github.com/geospoc/v-mapbox/issues"
},
"homepage": "https://v-mapbox.geospoc.io/"
}