-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "sort-by-distance",
"version": "2.0.0",
"description": "Sort array of points based on how close they are to a givin point",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/sort-by-distance.git"
},
"homepage": "https://github.com/tiaanduplessis/sort-by-distance",
"bugs": "https://github.com/tiaanduplessis/sort-by-distance/issues",
"author": "Tiaan du Plessis",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rm -rf dist && tsup src/index.ts --format cjs,esm --dts --target node16",
"prepublishOnly": "npm run build",
"types:check": "tsc --noEmit",
"format": "pretty-quick --ignore-path .gitignore",
"size": "dist-size"
},
"keywords": [
"sort",
"distance",
"point",
"sort-by-distance"
],
"dependencies": {
"get-value": "^3.0.1"
},
"devDependencies": {
"@types/get-value": "^3.0.2",
"dist-size": "^0.4.0",
"jest": "^23.6.0",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"standard": "^12.0.1",
"tsup": "^6.0.1",
"typescript": "^4.7.3",
"vitest": "^0.13.1"
},
"engines": {
"node": ">=14"
},
"standard": {
"env": {
"jest": true
}
}
}