-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.7 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
90
91
92
93
{
"name": "@iwpnd/valhalla-ts",
"version": "1.0.17",
"description": "A nodejs client and helper utilities for valhalla routing engine",
"main": "dist/index.js",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/iwpnd/valhalla-ts.git"
},
"publishConfig": {
"access": "public"
},
"author": "B. Ramser <[email protected]>",
"contributors": [],
"license": "MIT",
"keywords": [
"valhalla",
"routing",
"http-client"
],
"engines": {
"node": ">=20.x",
"yarn": "^1.22.x"
},
"private": false,
"scripts": {
"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 --verbose --testMatch '**/*.test.ts' --coverage",
"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'",
"prepare": "husky"
},
"dependencies": {
"@iwpnd/rip-ts": "1.1.11",
"@types/geojson": "7946.0.15"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/core": "0.9.1",
"@eslint/js": "9.17.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.3",
"@types/chance": "1.1.6",
"@types/eslint__js": "8.42.3",
"@types/estree": "1.0.6",
"@types/jest": "29.5.14",
"@types/json-schema": "7.0.15",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"chance": "1.1.12",
"conventional-changelog-conventionalcommits": "8.0.0",
"devmoji": "2.3.0",
"eslint": "9.17.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.3.0",
"pinst": "3.0.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"semantic-release": "24.2.1",
"ts-jest": "29.2.5",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}