-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.37 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
{
"name": "@etalab/cadastre",
"version": "0.19.1-1",
"type": "module",
"publishConfig": {
"access": "public"
},
"author": "Jérôme Desboeufs <[email protected]>",
"homepage": "https://github.com/etalab/cadastre",
"repository": {
"type": "git",
"url": "https://github.com/etalab/cadastre.git"
},
"bugs": {
"url": "https://github.com/etalab/cadastre/issues"
},
"license": "MIT",
"bin": {
"cadastre-builder": "./bin/cli.js"
},
"scripts": {
"lint": "xo",
"test": "ava"
},
"dependencies": {
"@etalab/decoupage-administratif": "^4.0.0",
"@etalab/edigeo-parser": "^1.0.0",
"@etalab/edigeo-reproject": "^1.0.1",
"@turf/turf": "^5.1.6",
"JSONStream": "^1.3.5",
"bluebird": "^3.7.2",
"commander": "^2.20.0",
"debug": "^4.1.1",
"decompress": "^4.2.1",
"fs-extra": "^9.0.1",
"gdal-async": "^3.9.0",
"geojson2shp": "^0.3.2",
"glob": "^7.1.6",
"lodash-es": "^4.17.21",
"mapshaper": "^0.4.123",
"moment": "^2.27.0",
"piscina": "^3.2.0",
"pumpify": "^2.0.1",
"yazl": "^2.5.1"
},
"devDependencies": {
"ava": "^3.15.0",
"xo": "^0.52.3"
},
"xo": {
"space": 2,
"semicolon": false,
"rules": {
"curly": "off",
"no-await-in-loop": "off",
"promise/prefer-await-to-then": "off"
}
},
"engines": {
"node": ">= 16"
}
}