-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.44 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
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
88
89
{
"name": "@iwpnd/tile38-ts",
"version": "2.4.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 <[email protected]>",
"contributors": [
"V. Priem <[email protected]>"
],
"license": "MIT",
"keywords": [
"tile38",
"geofence",
"geo-spatial",
"database"
],
"engines": {
"node": ">=20.x",
"yarn": "^1.22.x"
},
"private": false,
"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 --latest",
"up": "docker-compose up",
"down": "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.4.1"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.15.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"coveralls": "3.1.1",
"devmoji": "2.3.0",
"eslint": "9.15.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"pinst": "3.0.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}