-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
110 lines (110 loc) · 3.6 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@terrestris/mapfish-print-manager",
"version": "16.0.1",
"description": "An interface to easily communicate with the MapFish Print module",
"repository": {
"type": "git",
"url": "https://github.com/terrestris/mapfish-print-manager"
},
"license": "MIT",
"author": "terrestris GmbH & Co. KG <[email protected]>",
"type": "module",
"contributors": [
{
"name": "Daniel Koch",
"email": "[email protected]",
"url": "https://github.com/dnlkoch"
}
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:dist",
"build:dist": "npm run clean:dist && tsc -p ./tsconfig.build.json",
"build:docs": "npm run clean:docs && typedoc",
"build:examples": "npm run clean:examples && webpack --config webpack.prod.cjs",
"clean": "npm run clean:dist && npm run clean:examples && npm run clean:docs",
"check": "npm run typecheck && npm run lint && npm run test",
"clean:dist": "rimraf ./dist/*",
"clean:docs": "rimraf ./build/docs/*",
"clean:examples": "rimraf ./build/examples/*",
"lint": "eslint -c eslint.config.mjs src/ spec/",
"lint:fix": "npm run lint -- --fix",
"postpublish": "node ./tasks/update-gh-pages.cjs",
"prepare": "husky",
"prepublishOnly": "npm run build:dist && npm run build:docs",
"start": "webpack-dev-server --config webpack.dev.cjs",
"test": "jest --maxWorkers=50% --coverage --config jest.config.cjs",
"test:watch": "jest --watchAll --config jest.config.cjs",
"typecheck": "tsc --pretty --noEmit"
},
"dependencies": {
"js-logger": "^1.6.1",
"lodash": "^4.17.21",
"parse-color": "^1.0.0",
"parse-css-font": "^4.0.0",
"query-string": "^9.0.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/plugin-transform-class-properties": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@commitlint/cli": "^19.0.1",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@terrestris/eslint-config-typescript": "^7.0.0",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.191",
"@types/parse-color": "^1.0.1",
"@types/url-parse": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@webpack-cli/serve": "^2.0.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"canvas": "^2.10.2",
"css-loader": "^7.1.0",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"gh-pages": "^6.1.1",
"globals": "^15.11.0",
"husky": "^9.0.6",
"jest": "^29.3.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"ol": "^10.2.0",
"rimraf": "^6.0.0",
"semantic-release": "^24.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.4.1",
"typedoc": "^0.26.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^6.0.1"
},
"peerDependencies": {
"ol": ">=10"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}