-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
72 lines (72 loc) · 2.23 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
{
"name": "geostyler-qgis-parser",
"version": "4.0.1",
"description": "GeoStyler Style Parser implementation for QGIS Style",
"main": "dist/QGISStyleParser.js",
"type": "module",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-qgis-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"qgis",
"qml"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler/issues"
},
"homepage": "https://github.com/geostyler/geostyler-qgis-parser#readme",
"dependencies": {
"buffer": "^6.0.3",
"color": "^4.2.3",
"core-js": "^3.26.1",
"geostyler-cql-parser": "^4.0.0",
"geostyler-style": "^9.0.1",
"string_decoder": "^1.3.0",
"timers": "^0.1.1",
"xml2js": "^0.6.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 .eslintrc.cjs --ext .ts . && tsc --noEmit",
"prepublishOnly": "npm run lint:test:build",
"test-debug": "NODE_OPTIONS=--import=extensionless/register vitest --inspect-brk --no-file-parallelism",
"test-watch": "NODE_OPTIONS=--import=extensionless/register vitest",
"test": "NODE_OPTIONS=--import=extensionless/register vitest run"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@terrestris/eslint-config-typescript": "^3.1.0",
"@types/color": "^3.0.3",
"@types/jest": "^29.2.3",
"@types/node": "^20.1.3",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.28.0",
"extensionless": "^1.9.9",
"jest": "^29.3.1",
"semantic-release": "^24.0.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"funding": "https://opencollective.com/geostyler"
}