-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.74 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
{
"name": "@geoblocks/mapfishprint",
"version": "0.2.18",
"publishConfig": {
"access": "public"
},
"license": "BSD-3-Clause",
"repository": "github:geoblocks/mapfishprint",
"files": [
"src",
"lib",
"CHANGES.md"
],
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"test": "npm run prepare && node -r ./setup-browser-env.cjs --test test.js",
"test:debug": "npm run prepare && npm run test:debug:help && node -r ./setup-browser-env.cjs --inspect-brk --watch --test test.js",
"test:debug:help": "echo '---' && echo 'Debug is reachable in your browser at chrome://inspect' && echo '---'",
"eslint": "eslint src *.js --fix",
"checks": "npm run eslint && npm run typecheck",
"prettier-fix": "prettier -w src *.js",
"prepare": "tsc --pretty && node node_modules/@geoblocks/recast-utils/fix_paths lib",
"typecheck": "tsc --pretty --noEmit",
"start": "npm run prepare && python3 -m http.server --directory demo 12345",
"doc": "typedoc --name 'Mapfish Print geoblock' --includeVersion --emit docs --excludeExternals --entryPointStrategy expand ./src"
},
"optionalDependencies": {
"@geoblocks/print": "0.7.9"
},
"peerDependencies": {
"ol": "6 || 7 || 8 || 9 || 10"
},
"devDependencies": {
"@geoblocks/print": "0.7.9",
"@geoblocks/recast-utils": "0.1.0",
"@types/geojson": "7946.0.14",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"color-name": "2.0.0",
"color-parse": "2.0.2",
"eslint": "9.9.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"gh-pages": "6.1.1",
"ol": "^9.0.0",
"prettier": "^3.3.3",
"typedoc": "0.26.5",
"typescript": "5.5.4"
}
}