-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
{
"name": "@wootapa/polygraph-ol",
"version": "1.0.8",
"description": "Extension of @wootapa/polygraph for OpenLayers 7+.",
"types": "dist/polygraph.ol.d.ts",
"main": "dist/polygraph.umd.js",
"unpkg": "dist/polygraph.umd.js",
"module": "dist/polygraph.esm.js",
"browser": "dist/polygraph.esm.js",
"scripts": {
"start": "npm run build",
"lint": "eslint --ext .ts ./src",
"test": "jest",
"build": "npm run lint && rollup -c --bundleConfigAsCjs"
},
"files": [
"dist/**/*.{js,map,ts}"
],
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wootapa/polygraph-ol.git"
},
"keywords": [
"WootApa",
"OpenLayers",
"Geoserver",
"OGC",
"CQL",
"GIS",
"Evaluate",
"Logical",
"Comparison"
],
"author": "Andreas Petersson",
"license": "MIT",
"bugs": {
"url": "https://github.com/wootapa/polygraph-ol/issues"
},
"homepage": "https://github.com/wootapa/polygraph-ol#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"ol": "7.1.0",
"rollup": "^3.2.3",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"ol": ">= 7.0.0"
},
"dependencies": {
"@turf/boolean-intersects": "^6.5.0",
"performance-now": "^2.1.0"
}
}