-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 loc) · 2 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
{
"name": "geostyler-sld-parser",
"version": "7.0.0",
"description": "GeoStyler Style Parser implementation for SLD",
"type": "module",
"main": "dist/SldStyleParser.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-sld-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"sld"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-sld-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-sld-parser#readme",
"scripts": {
"build-browser": "vite build",
"build-dist": "tsc -p tsconfig.json",
"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 .eslintrc.cjs --ext .ts . && tsc --noEmit --project tsconfig.json",
"prepublishOnly": "npm run lint:test:build",
"test-watch": "vitest",
"test": "vitest run --coverage"
},
"dependencies": {
"fast-xml-parser": "^4.4.1",
"geostyler-style": "^9.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/lodash": "^4.17.5",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-istanbul": "^0.34.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"coveralls": "^3.1.1",
"eslint": "^8.40.0",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5",
"vite": "4.5.5",
"vitest": "0.34.6"
},
"engines": {
"node": ">=20.6.0"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not dead"
],
"funding": "https://opencollective.com/geostyler"
}