-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "@indoor-analytics/discrete-clustering",
"version": "1.1.0",
"description": "Clusters a bunch of paths by space discretization.",
"author": "Rémy Raes",
"repository": "https://github.com/indoor-analytics/discrete-clustering",
"license": "MIT",
"main": "./dist/bundle.js",
"types": "./dist/index.d.ts",
"scripts": {
"benchmark": "npx ts-node test/benchmarking.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src/ --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest",
"test:graph": "npx jest test/graph/graphConversion.test.ts",
"test:integration": "npx ts-node test/integration.ts",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/**/*.ts",
"build": "npx webpack --mode production",
"size": "size-limit",
"analyze": "size-limit --why"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.4",
"@size-limit/time": "^6.0.3",
"@turf/area": "^6.5.0",
"@turf/boolean-point-on-line": "^6.5.0",
"@turf/boolean-within": "^6.5.0",
"@turf/line-distance": "^4.7.3",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"size-limit": "^6.0.3",
"ts-jest": "^26.5.4",
"ts-loader": "^9.2.6",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
},
"size-limit": [
{
"path": "dist/bundle.js",
"limit": "50 KB"
}
],
"dependencies": {
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/bearing": "^6.5.0",
"@turf/centroid": "^6.5.0",
"@turf/circle": "^6.5.0",
"@turf/clone": "^6.5.0",
"@turf/destination": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/envelope": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/hex-grid": "^6.5.0",
"@turf/length": "^6.5.0",
"@turf/line-intersect": "^6.5.0",
"@turf/midpoint": "^6.5.0",
"@turf/square-grid": "^6.5.0",
"@turf/triangle-grid": "^6.5.0",
"graphology": "^0.23.2",
"graphology-shortest-path": "^2.0.0",
"graphology-types": "^0.23.0"
}
}