-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "@camptocamp/inkmap",
"version": "1.4.0",
"description": "A library for generating printable, high quality maps in the browser.",
"main": "src/main/index.js",
"files": [
"dist/",
"src/"
],
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint src",
"typecheck": "tsc",
"format": "prettier --write src demo test",
"format:check": "prettier --check src demo test",
"test:unit": "jest",
"test:rendering": "node test/rendering/run.js",
"demo": "webpack-dev-server --config demo/webpack.config.js",
"build:demo": "webpack --config demo/webpack.config.js --mode production",
"build:lib": "rm -rf dist && webpack --config ./webpack.config.js --mode production",
"prepublishOnly": "npm run lint && npm run typecheck && npm run format:check && npm run test:unit && npm run test:rendering && npm run build:lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camptocamp/inkmap.git"
},
"keywords": [
"map",
"print",
"openlayers"
],
"author": "Camptocamp",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/camptocamp/inkmap/issues"
},
"homepage": "https://github.com/camptocamp/inkmap#readme",
"dependencies": {
"@babel/runtime": "^7.12.5",
"geostyler-legend": "~4.0.0",
"geostyler-openlayers-parser": "~4.0.0",
"lodash": "^4.17.21",
"ol": "^9.1.0",
"proj4": "^2.6.3",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@babel/core": "~7.20.5",
"@babel/plugin-transform-runtime": "~7.19.6",
"@babel/preset-env": "~7.20.2",
"babel-jest": "~29.3.1",
"babel-loader": "~9.1.0",
"eslint": "~8.30.0",
"eslint-config-prettier": "~8.5.0",
"html-webpack-plugin": "~5.5.0",
"isomorphic-fetch": "~3.0.0",
"jest": "~29.3.1",
"jest-canvas-mock": "~2.4.0",
"jest-environment-jsdom": "^29.3.1",
"jspdf": "~2.5.1",
"pixelmatch": "~5.3.0",
"prettier": "~2.8.1",
"puppeteer": "~19.4.1",
"typescript": "~4.9.4",
"webpack": "~5.75.0",
"webpack-cli": "~5.0.1",
"webpack-dev-server": "~4.11.1",
"worker-loader": "~3.0.8",
"yargs": "~17.6.2"
}
}