-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 2.1 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
{
"name": "geostyler-wfs-parser",
"version": "3.0.1",
"description": "GeoStyler Data Parser implementation for Web Feature Service (WFS)",
"type": "module",
"main": "dist/WfsDataParser.js",
"declaration": "dist/WfsDataParser.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-wfs-parser.git"
},
"files": [
"dist"
],
"keywords": [
"geostyler",
"parser",
"data",
"wfs"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-wfs-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-wfs-parser#readme",
"dependencies": {
"fast-xml-parser": "^4.4.0",
"geostyler-data": "^1.0.0"
},
"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": "^5.0.0",
"@types/geojson": "^7946.0.14",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.4",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitest/coverage-istanbul": "^1.6.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.56.0",
"np": "^10.0.5",
"semantic-release": "^24.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.4.5",
"vite": "^5.3.2",
"vitest": "^1.6.0"
},
"scripts": {
"build:browser": "vite build",
"build": "npm run build:browser && tsc -p tsconfig.json",
"lint:test": "npm run lint && npm run test",
"lint:typecheck:test": "npm run lint && npm run typecheck && npm run test",
"lint": "eslint -c .eslintrc.cjs --ext .ts",
"prepublishOnly": "npm run build",
"release": "np --no-yarn && git push https://github.com/geostyler/geostyler-wfs-parser.git main",
"test:watch": "vitest watch",
"test": "vitest run --coverage",
"typecheck": " tsc --noEmit --project tsconfig.json"
},
"funding": "https://opencollective.com/geostyler"
}