-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.38 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.38 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
{
"name": "addok-geocode-stream",
"version": "0.27.0",
"description": "Node.js stream API and CLI for addok geocoder",
"main": "index.js",
"repository": "https://github.com/livingdata-co/addok-geocode-stream",
"author": "Jérôme Desboeufs <jerome@livingdata.co>",
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"addok-geocode": "cli.js"
},
"scripts": {
"lint": "xo",
"test": "ava"
},
"dependencies": {
"addok-cluster": "^0.11.0",
"chardet": "^2.1.0",
"csv-write-stream": "^2.0.0",
"got": "^14.6.1",
"iconv-lite": "^0.7.0",
"lodash-es": "^4.17.21",
"papaparse": "5.3.2",
"parallel-transform": "^1.2.0",
"pumpify": "^2.0.1",
"strip-bom-stream": "^5.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"ava": "^6.4.1",
"xo": "^0.60.0"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"comma-dangle": [
"error",
"never"
],
"import/order": [
"error",
{
"newlines-between": "ignore"
}
],
"object-curly-newline": "off",
"unicorn/no-array-for-each": "off",
"unicorn/text-encoding-identifier-case": "off",
"unicorn/prevent-abbreviations": "off"
}
},
"ava": {
"environmentVariables": {
"GEOCODER_COLUMN_PREFIX": "geocoder__"
}
},
"engines": {
"node": ">= 20.9"
}
}