-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.43 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.43 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
{
"name": "@map-colonies/mc-utils",
"version": "5.1.0",
"type": "commonjs",
"description": "MapColonies utility library for http, geo, arrays and interfaces",
"main": "./dist/index.js",
"scripts": {
"test:unit": "jest --config=./tests/configurations/unit/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "standard-version",
"test": "npm run test:unit",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json && tsc-alias",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepack": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/mc-utils.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/mc-utils/issues"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/MapColonies/mc-utils#readme",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@map-colonies/eslint-config": "^6.0.0",
"@map-colonies/prettier-config": "0.0.1",
"@types/express": "^5.0.3",
"@types/geojson": "^7946.0.16",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.20",
"@types/ngeohash": "^0.6.8",
"@types/node": "^24.0.15",
"commitlint": "^19.8.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.0",
"eslint-plugin-jest": "^28.11.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jest-create-mock-instance": "^2.0.0",
"jest-html-reporters": "^3.1.7",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"dependencies": {
"@map-colonies/types": "^1.9.0",
"@turf/turf": "^6.5.0",
"axios": "^1.10.0",
"axios-retry": "^4.5.0",
"http-status-codes": "^2.3.0",
"lodash": "^4.17.21",
"ngeohash": "^0.6.3",
"zod": "^3.24.1"
},
"peerDependencies": {
"@map-colonies/error-types": "^1.3.1"
},
"engines": {
"node": ">=24.0.0"
},
"//OverrideComment": "https://github.com/Turfjs/turf/issues/2922",
"overrides": {
"concaveman": "1.2.1"
}
}