-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.87 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
{
"name": "geostyler-symcore-parser",
"version": "0.0.1",
"description": "GeoStyler Style Parser implementation for OGC styles and symbology encoding",
"type": "module",
"main": "dist/geostyler-symcore-parser.js",
"types": "dist/index.d.ts",
"browser": "dist/geostyler-symcore-parser.umd.cjs",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-symcore-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"ogc styles",
"symcore",
"styles and symbology"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-symcore-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-symcore-parser#readme",
"scripts": {
"build": "vite build",
"typecheck": " tsc --noEmit --project tsconfig.json",
"lint": "eslint",
"prepublishOnly": "npm run translate-schema && npm run build",
"test": "vitest",
"translate-schema": "json2ts src/schema/*.json src/types/schema.d.ts --unreachableDefinitions",
"lint:test": "npm run lint && npm run test",
"lint:typecheck:test": "npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"geostyler-style": "^8.1.0"
},
"devDependencies": {
"@terrestris/eslint-config-typescript": "^5.0.0",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^7.12.0",
"coveralls": "^3.1.1",
"eslint": "^8.40.0",
"json-schema-to-typescript": "^14.0.5",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"funding": "https://opencollective.com/geostyler"
}