-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.35 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
{
"name": "addok-cluster",
"version": "0.8.0",
"description": "Clustering addok geocoding capabilities from your Node.js process",
"main": "index.js",
"type": "module",
"repository": "https://github.com/livingdata-co/addok-cluster",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"lib",
"index.js"
],
"scripts": {
"lint": "xo",
"test": "c8 --all ava",
"test-lcov": "c8 --reporter=lcov --reporter=text --all ava"
},
"dependencies": {
"debug": "^4.3.4",
"execa": "^8.0.1",
"http-errors": "^2.0.0",
"ioredis": "^5.3.2",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.5",
"python-shell": "^5.0.0",
"supports-color": "^9.4.0"
},
"devDependencies": {
"ava": "^5.3.1",
"c8": "^8.0.1",
"tmp": "^0.2.1",
"xo": "^0.56.0"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"comma-dangle": [
"error",
"never"
],
"unicorn/prevent-abbreviations": "off",
"unicorn/prefer-event-target": "off",
"import/order": [
"error",
{
"newlines-between": "ignore"
}
]
}
},
"c8": {
"include": [
"lib/*.js"
]
},
"engines": {
"node": ">= 18.12"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}