-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.09 KB
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
87
88
89
90
91
92
93
94
95
{
"name": "geopathfinder",
"version": "0.0.0-development",
"packageManager": "yarn@4.13.0",
"description": "Geodesic-aware visibility graph implementation to support shortest path calculations on multi destination",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/Razielwar/geopathfinder",
"bugs": {
"url": "https://github.com/Razielwar/geopathfinder/issues"
},
"keywords": [
"geopathfinder",
"pathfinding",
"geojson",
"visibility-graph",
"gis",
"shortest-path"
],
"repository": {
"type": "git",
"url": "git@github.com:Razielwar/geopathfinder.git"
},
"contributors": [
"Xavier-Alexandre BILLARD <xabillard@gmail.com>"
],
"engines": {
"node": "^24.13.1",
"yarn": "^4.13.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
"build:test": "tsc --project tsconfig.test.json",
"bench": "node benchmark/index.js",
"bench:pathfinding": "ts-node --project tsconfig.test.json benchmark/pathfinding.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier . --write",
"clean:install": "rm yarn.lock && rm -r node_modules && yarn install && yarn audit fix",
"semantic-release": "semantic-release",
"clinic:doctor": "yarn run build:test && clinic doctor -- node ./dist-test/profile/VisibilityGraphProfiling.js",
"clinic:flame": "yarn run build:test && clinic flame -- node ./dist-test/profile/VisibilityGraphProfiling.js",
"clinic:heap": "yarn run build:test && clinic heapprofiler -- node ./dist-test/profile/VisibilityGraphProfiling.js"
},
"devDependencies": {
"@babel/runtime": "^7.29.2",
"@eslint/js": "^10.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@jest/globals": "^30.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@turf/turf": "7.2.0",
"@types/geojson": "^7946.0.16",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "24.12.2",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"babel-plugin-istanbul": "8.0.2",
"benchmark": "^2.1.4",
"clinic": "^13.0.0",
"conventional-changelog-eslint": "^6.1.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"lodash.clonedeep": "^4.5.0",
"nyc": "^18.0.0",
"prettier": "^3.8.2",
"semantic-release": "^25.0.3",
"source-map-support": "^0.5.21",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"lint-staged": {
"src/*.{js,ts}": "eslint --fix",
"*.{js,ts,json}": "prettier --cache --write"
}
}