-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "@etalab/adresses-ftth",
"version": "1.1.0",
"description": "Extraction des adresses contenues dans les fichiers de déploiement FTTH",
"main": "index.js",
"repository": "[email protected]:etalab/adresses-ftth.git",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"download-cp": "curl 'https://datanova.laposte.fr/explore/dataset/laposte_hexasmal/download/?format=json&timezone=Europe/Berlin&lang=fr' > codes-postaux.json",
"build": "node --max-old-space-size=8192 build",
"lint": "xo",
"test": "ava"
},
"dependencies": {
"@etalab/decoupage-administratif": "4.0.0",
"bluebird": "^3.7.2",
"codes-postaux": "^4.0.0",
"csv-parser": "^3.0.0",
"end-of-stream": "^1.4.4",
"fs-extra": "^10.0.0",
"geojson-stream": "^0.1.0",
"get-stream": "^6.0.1",
"gunzip-stream": "^1.0.1",
"lodash": "^4.17.21",
"pumpify": "^2.0.1",
"talisman": "^1.1.4"
},
"devDependencies": {
"ava": "^4.0.1",
"xo": "^0.48.0"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"comma-dangle": [
"error",
"never"
],
"unicorn/prefer-string-slice": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/prefer-module": "off",
"import/extensions": "off",
"node/prefer-global/buffer": "off",
"node/prefer-global/process": "off"
}
}
}