-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "geostyler-mapfile-parser",
"version": "4.0.0",
"description": "GeoStyler Style Parser implementation for Mapfile",
"type": "module",
"main": "dist/MapfileStyleParser.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-mapfile-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"mapfile"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-mapfile-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-mapfile-parser#readme",
"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",
"start-dev": "vite",
"test-watch": "vitest",
"test": "vitest run --coverage"
},
"dependencies": {
"@terrestris/base-util": "^1.0.1",
"geostyler-style": "9.1.0"
},
"devDependencies": {
"@terrestris/eslint-config-typescript": "^2.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^20.14.7",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vitest/coverage-istanbul": "^1.6.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^7.32.0",
"jest": "^27.2.0",
"path": "^0.12.7",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"funding": "https://opencollective.com/geostyler"
}