-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.95 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
{
"name": "geostyler-shapefile-parser",
"version": "2.0.0",
"description": "GeoStyler Data Parser implementation for Shapefile",
"type": "module",
"main": "dist/ShapefileDataParser.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-shapefile-parser.git"
},
"keywords": [
"geostyler",
"parser",
"data",
"shapefile"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-shapefile-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-shapefile-parser#readme",
"dependencies": {
"buffer": "^6.0.3",
"geostyler-data": "^1.0.0",
"geostyler-geojson-parser": "^2.0.0",
"shpjs": "^5.0.1",
"string_decoder": "^1.3.0"
},
"scripts": {
"build": "npm run build:browser && tsc -p tsconfig.json",
"build:browser": "vite build",
"test": "vitest run",
"lint": "eslint -c .eslintrc.cjs --ext .ts,tsx src/ && tsc --noEmit --project tsconfig.json",
"release": "np --no-yarn && git push https://github.com/geostyler/geostyler-shapefile-parser.git master"
},
"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/node": "^20.14.9",
"@types/shpjs": "^3.4.7",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^7.15.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"core-js": "^3.37.1",
"eslint": "^8.0.0",
"eslint-plugin-react-hooks": "^4.6.2",
"np": "^10.0.6",
"semantic-release": "^24.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"vite": "^5.3.2",
"vitest": "^1.6.0"
},
"funding": "https://opencollective.com/geostyler"
}