-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.01 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
{
"name": "ol-displaced-points",
"version": "0.4.0",
"description": "Displaced Points methodology works to visualize all features of a point layer, even if they have the same location. The map takes the points falling in a given Distance tolerance from each other (cluster) and places them around their barycenter.",
"scripts": {
"build-package": "npm run transpile && npm run generate-types && node tasks/prepare-package.js",
"clean": "rm -rf build && rm -rf node_modules && rm package-lock.json && npm cache clean -f && npm cache verify",
"docs": "npm run docs:dev",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"generate-types": "tsc --project config/tsconfig-build.json --declaration --declarationMap --emitDeclarationOnly --outdir build/ol-displaced-points",
"pre-transpile": "shx rm -rf build/ol-displaced-points/* && shx mkdir -p build/ol-displaced-points && shx cp -rf src build/ol-displaced-points/src",
"reinstall": "npm run clean && npm i",
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "npm run pre-transpile && tsc --project config/tsconfig-build.json"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/andres-geotec/ol-displaced-points.git"
},
"keywords": [
"ol",
"openlayers",
"poinst",
"displacement",
"cluster",
"rings",
"concentric",
"rings",
"grid",
"spiral"
],
"author": "Andrés Martínez <andres.geotec@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andres-geotec/ol-displaced-points/issues"
},
"homepage": "https://github.com/andres-geotec/ol-displaced-points#readme",
"dependencies": {
"circle-properties": "~0.1.1"
},
"devDependencies": {
"es-main": "^1.3.0",
"fs-extra": "^11.2.0",
"ol": "^10.2.1",
"shx": "^0.3.4",
"typescript": "^5.6.3",
"vitepress": "^1.5.0"
},
"optionalDependencies": {
"eslint": "^9.14.0"
}
}