-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.17 KB
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
{
"name": "geostyler-mapbox-parser",
"version": "6.2.0",
"description": "GeoStyler-Style-Parser implementation for Mapbox",
"type": "module",
"main": "dist/MapboxStyleParser.js",
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-mapbox-parser.git"
},
"files": [
"dist"
],
"keywords": [
"mapbox",
"geostyler"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-mapbox-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-mapbox-parser#readme",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"@types/mapbox-gl": "^3.4.1",
"geostyler-style": "^10.5.0"
},
"scripts": {
"build-browser": "vite build",
"build-dist": "tsc",
"build": "npm run build-browser && npm run build-dist",
"lint:test:build": "npm run lint && npm run test && npm run build",
"lint:test": "npm run lint && npm run test",
"lint": "eslint -c eslint.config.mjs --ext .ts . && tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"test-watch": "NODE_OPTIONS=--import=extensionless/register vitest",
"test": "NODE_OPTIONS=--import=extensionless/register vitest --coverage run"
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^4.4.1",
"@terrestris/eslint-config-typescript": "^9.0.0",
"@types/lodash": "^4.17.17",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^8.33.1",
"@vitest/coverage-istanbul": "^3.2.1",
"conventional-changelog-conventionalcommits": "^9.0.0",
"eslint": "^9.28.0",
"extensionless": "^1.9.9",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"semantic-release": "^25.0.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.1"
},
"funding": "https://opencollective.com/geostyler"
}