-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "@vcmap/search-geocodr",
"version": "1.0.3",
"description": "A search plugin for Geocodr",
"type": "module",
"main": "src/index.js",
"scripts": {
"prepublishOnly": "vcmplugin build",
"build": "vcmplugin build",
"pack": "vcmplugin pack",
"start": "vcmplugin serve",
"preview": "vcmplugin preview",
"buildStagingApp": "vcmplugin buildStagingApp",
"lint:js": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:prettier",
"format": "prettier --write --list-different . && npm run lint:js -- --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"author": "Tim Balschmiter <geodienste@rostock.de>",
"license": "MIT",
"keywords": [
"vcmap",
"plugin"
],
"files": [
"src/",
"dist/",
"plugin-assets/",
"LICENSE.md",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": "./src/index.js",
"./dist": "./dist/index.js"
},
"eslintIgnore": [
"node_modules"
],
"eslintConfig": {
"root": true,
"extends": "@vcsuite/eslint-config/vue"
},
"prettier": "@vcsuite/eslint-config/prettier.js",
"peerDependencies": {
"@vcmap/core": "^5.0.0",
"@vcmap/ui": "^5.0.0",
"vue": "~2.7.3",
"vuetify": "~2.6.7"
},
"devDependencies": {
"@vcmap/plugin-cli": "^2.1.12",
"@vcsuite/eslint-config": "^3.0.5"
},
"mapVersion": "^5.0.0"
}