-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "mapboxgl-legend",
"version": "1.14.0",
"description": "Mapbox-GL plugin that automatically draws a legend from layer styles",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src && stylelint 'src/**/*.scss'",
"test": "vitest --coverage",
"build": "vitest run && vite build",
"prepare": "npm run build",
"dev": "vite"
},
"keywords": [
"mapbox",
"mapboxgl",
"plugin",
"legend",
"style"
],
"author": "Marc Vilella <[email protected]> (https://github.com/markusand)",
"repository": {
"type": "git",
"url": "git+https://github.com/markusand/mapboxgl-legend.git"
},
"bugs": {
"url": "https://github.com/markusand/mapboxgl-legend/issues"
},
"homepage": "https://github.com/markusand/mapboxgl-legend",
"license": "ISC",
"devDependencies": {
"@types/mapbox-gl": "^2.7.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitest/coverage-v8": "^1.2.1",
"autoprefixer": "^10.4.14",
"c8": "^9.1.0",
"eslint": "^8.37.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.4",
"jsdom": "^23.2.0",
"mapbox-gl": "^3.1.0",
"sass": "^1.60.0",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.0.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.6.3",
"vitest": "^1.2.1"
}
}