-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.42 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
{
"name": "vue-mapbox-ts",
"logo": {
"file": "./documentation/logo.png"
},
"version": "0.9.7",
"description": "Reactive Vue3 Mapbox Framework for Vue.js written in TypeScript",
"author": {
"name": "Relief Melone",
"email": "[email protected]"
},
"scripts": {
"build": "rm -rf lib/ && yarn build:js",
"test:unit": "vue-cli-service test:unit",
"test:comp": "cypress run --component --browser edge",
"lint": "vue-cli-service lint --no-fix",
"build:js": "cross-env NODE_ENV=production rollup --config $npm_package_config_rollup && yarn build:types",
"build:types": "tsc --build tsconfigtypes.json",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"fix": "vue-cli-service lint",
"prepublishOnly": "npm run build",
"test": "echo \"no tests implemented\""
},
"main": "lib/index.min.js",
"module": "lib/index.esm.js",
"files": [
"lib"
],
"peerDependencies": {
"vue": ">= 3.2 <= 3.5"
},
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.3.0",
"@mapbox/mapbox-gl-geocoder": "^5.0.1",
"@types/chai": "^4.2.11",
"@types/geojson": "^7946.0.7",
"@types/mapbox__mapbox-gl-geocoder": "^4.7.3",
"@types/mapbox-gl": "^2.7.10",
"@types/mocha": "^5.2.4",
"fast-deep-equal": "^3.1.3",
"mapbox-gl": "^2.11.1",
"my-deferred": "^1.2.0"
},
"devDependencies": {
"@cypress/vue": "^5.0.3",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-url": "^7.0.0",
"@types/mapbox__mapbox-gl-draw": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@vue/cli-plugin-eslint": "^5.0.1",
"@vue/cli-plugin-typescript": "^5.0.1",
"@vue/cli-plugin-unit-mocha": "^5.0.4",
"@vue/cli-service": "~5.0.1",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-0",
"@wessberg/rollup-plugin-ts": "^2.0.4",
"chai": "^4.1.2",
"cross-env": "^7.0.3",
"cypress": "^12.1.0",
"eslint": "^7.5.0",
"eslint-plugin-vue": "^8.5.0",
"odiff-bin": "^2.5.0",
"postcss-import": "^14.0.0",
"postcss-nested": "^5.0.5",
"postcss-simple-vars": "^6.0.3",
"postcss-url": "^10.1.1",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"rollup": "^2.40.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"yarn": "^1.22.10"
},
"bugs": {
"url": "https://gitlab.com/relief-melone/vue-mapbox-ts/-/issues"
},
"config": {
"rollup": "rollup.config.js",
"createRollup": "util/write.rollup.config"
},
"es2015": "lib/index.esm.js",
"homepage": "https://gitlab.com/relief-melone/vue-mapbox-ts",
"keywords": [
"vue3",
"mapbox",
"typescript",
"vue.js",
"vue",
"mapbox-gl",
"geocoding"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/relief-melone/vue-mapbox-ts.git"
},
"types": "lib/index.d.ts"
}