-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
87 lines (87 loc) · 2.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "geostyler-openlayers-parser",
"version": "5.0.1",
"description": "GeoStyler Style Parser implementation for OpenLayers styles",
"type": "module",
"main": "dist/OlStyleParser.js",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/geostyler/geostyler-openlayers-parser.git"
},
"keywords": [
"geostyler",
"parser",
"style",
"openlayers"
],
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/geostyler/geostyler-openlayers-parser/issues"
},
"homepage": "https://github.com/geostyler/geostyler-openlayers-parser#readme",
"scripts": {
"build:browser": "vite build",
"build": "npm run build:browser && tsc -p tsconfig.json",
"typecheck": " tsc --noEmit --project tsconfig.json",
"lint": "eslint -c .eslintrc.cjs --ext .ts",
"prepublishOnly": "npm run build",
"test:watch": "jest --watchAll",
"test": "jest --coverage",
"lint:test": "npm run lint && npm run test",
"lint:typecheck:test": "npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"css-font-parser": "^2.0.0",
"geostyler-style": "^9.0.1"
},
"peerDependencies": {
"ol": ">=7.4"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@terrestris/eslint-config-typescript": "^4.0.0",
"@types/color-name": "^1.1.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"babel-loader": "^9.1.3",
"conventional-changelog-conventionalcommits": "^6.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.44.0",
"jest": "^29.6.1",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.6.1",
"ol": "^8.2.0",
"regenerator-runtime": "^0.14.0",
"semantic-release": "^22.0.8",
"typescript": "^5.4.5",
"vite": "4.5.3"
},
"engines": {
"node": ">=20.6.0"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"funding": "https://opencollective.com/geostyler"
}