-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "@etalab/dvf",
"version": "0.0.0",
"description": "Scripts permettant de manipuler les données DVF",
"main": "index.js",
"repository": "https://github.com/etalab/dvf",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "xo",
"improve-csv": "node --max-old-space-size=8192 improve-csv"
},
"dependencies": {
"@etalab/decoupage-administratif": "^0.8.0",
"@turf/centroid": "^6.0.2",
"@turf/truncate": "^6.0.1",
"bluebird": "^3.7.2",
"csv-parser": "^2.3.3",
"csv-write-stream": "^2.0.0",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"get-stream": "^6.0.0",
"got": "^11.8.0",
"gunzip-stream": "^1.0.1",
"into-stream": "^6.0.0",
"lodash": "^4.17.20",
"pumpify": "^2.0.1"
},
"devDependencies": {
"xo": "^0.34.2"
},
"xo": {
"semicolon": false,
"space": "2",
"rules": {
"unicorn/prefer-string-slice": "off",
"unicorn/no-reduce": "off",
"unicorn/no-fn-reference-in-iterator": "off"
}
},
"engines": {
"node": ">= 12"
}
}