forked from xtiko14/dvf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 956 Bytes
/
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
{
"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 <jerome.desboeufs@data.gouv.fr>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "xo",
"improve-csv": "node --max-old-space-size=8192 improve-csv"
},
"dependencies": {
"@etalab/decoupage-administratif": "^0.5.0",
"@turf/centroid": "^6.0.2",
"@turf/truncate": "^6.0.1",
"bluebird": "^3.5.4",
"csv-parser": "^2.2.0",
"csv-write-stream": "^2.0.0",
"dotenv": "^7.0.0",
"fs-extra": "^7.0.1",
"get-stream": "^5.1.0",
"gunzip-stream": "^1.0.1",
"into-stream": "^5.1.0",
"lodash": "^4.17.11",
"pumpify": "^1.5.1"
},
"devDependencies": {
"xo": "^0.24.0"
},
"xo": {
"semicolon": false,
"space": "2"
},
"engines": {
"node": ">= 10"
}
}