-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "cheap-ruler",
"version": "4.0.0",
"description": "A collection of fast approximations to common geographic measurements.",
"author": "Vladimir Agafonkin",
"license": "ISC",
"type": "module",
"main": "cheap-ruler.js",
"exports": "./index.js",
"module": "index.js",
"types": "index.d.ts",
"devDependencies": {
"@turf/turf": "^7.0.0",
"benchmark": "^2.1.4",
"eslint": "^9.5.0",
"eslint-config-mourner": "^4.0.0",
"node-vincenty": "0.0.6",
"rollup": "^4.18.0",
"typescript": "^5.5.2"
},
"scripts": {
"pretest": "eslint index.js bench test/*.js",
"test": "tsc && node --test test/test.js",
"build": "rollup index.js -o cheap-ruler.js -n CheapRuler -f umd",
"prepublishOnly": "npm test && npm run build",
"cov": "node --test --experimental-test-coverage test/test.js"
},
"files": [
"index.js",
"index.d.ts",
"cheap-ruler.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/cheap-ruler.git"
},
"keywords": [
"geospatial",
"measurement",
"approximation",
"distance"
]
}