-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1016 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
40
41
42
43
44
{
"name": "@etalab/decoupage-administratif",
"version": "4.0.0",
"description": "API JavaScript permettant d'interroger le découpage administratif français",
"main": ".",
"repository": "https://github.com/etalab/decoupage-administratif",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"data",
"*.js"
],
"scripts": {
"build": "node build",
"lint": "xo",
"test": "xo",
"prepare": "node build",
"download-cp-la-poste": "./download-codes-postaux-la-poste.sh"
},
"dependencies": {},
"devDependencies": {
"csv-parser": "^2.3.2",
"fs-extra": "^8.1.0",
"get-stream": "^5.1.0",
"lodash": "^4.17.15",
"node-xlsx": "^0.15.0",
"pumpify": "^2.0.1",
"xo": "^0.25.3"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"unicorn/prefer-string-slice": "off"
}
},
"engines": {
"node": ">= 10"
}
}