-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.65 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
{
"name": "ol-elevation-parser",
"version": "1.3.18",
"description": "Sample geometries and retrieve parsed elevation data from Open Layers sources",
"main": "lib/ol-elevation-parser.js",
"module": "lib/ol-elevation-parser.js",
"types": "lib/ol-elevation-parser.d.ts",
"type": "module",
"files": [
"lib/**/*",
"dist/**/*"
],
"scripts": {
"watch": "rollup -w --config rollup.config.dist.js --dev",
"doc": "documentation readme src/ol-elevation-parser.ts --shallow --quiet=true --access=public --access=undefined --section=API --parse-extension ts && node scripts/external-links.js README.md && prettier --write README.md",
"format": "eslint --fix src/*.ts && prettier --write src",
"lint": "eslint src/*.ts && prettier --check src",
"build": "npm run lint && rollup --config rollup.config.dist.js && rollup --config rollup.config.js",
"test": "jest --runInBand"
},
"keywords": [
"ol",
"openlayers",
"dsm",
"dem",
"mde",
"dtm",
"Digital Terrain Model",
"Digital Elevation Model",
"Digital Surface Model",
"profile",
"Elevation",
"Topographic profile",
"Terrarium",
"Mapbox"
],
"author": "Gastón Zalba",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GastonZalba/ol-elevation-parser.git"
},
"bugs": {
"url": "https://github.com/GastonZalba/ol-elevation-parser/issues"
},
"homepage": "https://github.com/GastonZalba/ol-elevation-parser#readme",
"peerDependencies": {
"ol": ">=6.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^29.2.2",
"canvas": "^2.10.1",
"documentation": "^14.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"ol": "^8.1.0",
"prettier": "^2.2.1",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^3.20.6",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.0.4"
},
"dependencies": {
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/intersect": "^6.5.0",
"@turf/square-grid": "^6.5.0",
"array-smooth": "^1.0.0"
}
}