forked from geostyler/geostyler-sld-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.36 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
{
"name": "geostyler-sld-parser",
"version": "5.2.0",
"description": "GeoStyler Style Parser implementation for SLD",
"main": "build/dist/SldStyleParser.js",
"types": "build/dist/SldStyleParser.d.ts",
"files": [
"build",
"browser"
],
"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-dist && npm run build-browser",
"lint:test:build": "npm run lint && npm run test && npm run build",
"lint:test": "npm run lint && npm run test",
"lint": "eslint -c .eslintrc.js --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.2.2",
"geostyler-style": "^8.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.3",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@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": "^6.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.40.0",
"semantic-release": "^22.0.8",
"typescript": "^5.0.4",
"vite": "4.4.9",
"vitest": "0.34.3"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not dead"
],
"funding": "https://opencollective.com/geostyler"
}