-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "geostyler-geojson-parser",
"version": "2.0.0",
"description": "GeoStyler Data Parser implementation for GeoJSON",
"main": "dist/GeoJsonDataParser.js",
"type": "module",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-geojson-parser.git"
},
"keywords": [
"geostyler",
"parser",
"data",
"geojson"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-geojson-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-geojson-parser#readme",
"dependencies": {
"geostyler-data": "^1.0.0"
},
"scripts": {
"build": "npm run build:browser && tsc -p tsconfig.json",
"build:browser": "vite build",
"pretest": "npm run lint",
"test": "vitest run --coverage",
"lint": "tslint --project tsconfig.json --config tslint.json",
"release": "np --no-yarn && git push https://github.com/geostyler/geostyler-geojson-parser.git master --tags"
},
"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/geojson": "^7946.0.10",
"@types/json-schema": "^7.0.11",
"@types/node": "^20.1.2",
"@vitest/coverage-istanbul": "^2.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"coveralls": "^3.1.1",
"np": "^10.0.0",
"semantic-release": "^24.0.0",
"tslint": "^6.1.3",
"typescript": "^5.4.5",
"vite": "^5.0.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.6.0"
},
"funding": "https://opencollective.com/geostyler"
}