-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "geojson-path-finder",
"version": "2.0.2",
"description": "Find shortest path through a network of GeoJSON",
"repository": "[email protected]:perliedman/geojson-path-finder.git",
"homepage": "https://github.com/perliedman/geojson-path-finder",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepare": "npm test && npm run build",
"pretest": "npm run build:esm",
"test": "vitest run"
},
"author": "Per Liedman <[email protected]>",
"license": "ISC",
"dependencies": {
"@turf/distance": "^6.5.0",
"@turf/explode": "^6.5.0",
"@turf/helpers": "^6.5.0",
"tinyqueue": "^2.0.3"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.11.7",
"esm": "^3.2.25",
"typedoc": "^0.23.22",
"typescript": "^4.8.4",
"vitest": "^0.26.2"
}
}