-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.39 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.39 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
{
"name": "@iwpnd/tile38-ts",
"version": "2.5.0",
"description": "A Node.js Tile38 client written in TypeScript",
"main": "dist/index.js",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/iwpnd/tile38-ts.git"
},
"publishConfig": {
"access": "public"
},
"author": "B. Ramser <iwpnd@posteo.de>",
"contributors": [
"V. Priem <vinzent.priem@gmail.com>"
],
"license": "MIT",
"keywords": [
"tile38",
"geofence",
"geo-spatial",
"database"
],
"engines": {
"node": ">=24.x",
"yarn": "^1.22.x"
},
"scripts": {
"postinstall": "yarn husky",
"prepublishOnly": "pinst --disable && yarn run build",
"postpublish": "pinst --enable",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf {dist,tsconfig.tsbuildinfo,yarn-error.log,coverage}",
"lint": "eslint ./src",
"test": "jest --runInBand",
"format": "prettier --write src/{*.ts,**/*.ts}",
"u": "yarn upgrade-interactive",
"start": "docker-compose up",
"stop": "docker-compose down",
"coverage": "FILE=./coverage/lcov-report/index.html; test -f $FILE && open $FILE || echo 'no coverage yet, run yarn test'"
},
"dependencies": {
"@vpriem/geojson": "1.3.0",
"ioredis": "5.10.1"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"conventional-changelog-conventionalcommits": "9.3.0",
"devmoji": "2.3.0",
"eslint": "10.1.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"pinst": "3.0.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"semantic-release": "25.0.3",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "yarn@4.8.1"
}