forked from BaseAdresseNationale/codes-postaux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.23 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
{
"name": "codes-postaux",
"version": "3.3.0",
"description": "French postal codes API for Node.js",
"repository": {
"type": "git",
"url": "https://github.com/etalab/codes-postaux.git"
},
"keywords": [
"france",
"codes postaux",
"open data",
"postal code",
"French"
],
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/etalab/codes-postaux/issues"
},
"homepage": "https://github.com/etalab/codes-postaux",
"files": [
"codes-postaux.json",
"codes-postaux-full.json",
"index.js",
"full.js"
],
"scripts": {
"lint": "xo",
"build": "node build",
"prepublishOnly": "node build",
"test": "ava"
},
"dependencies": {
"lodash": "^4.17.19"
},
"devDependencies": {
"@etalab/decoupage-administratif": "^0.8.0",
"ava": "^3.11.1",
"csv-parser": "^2.3.3",
"decompress": "^4.2.1",
"get-stream": "^5.1.0",
"got": "^11.5.1",
"into-stream": "^5.1.1",
"split2": "^3.1.1",
"xo": "^0.32.1"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"curly": "off",
"unicorn/prefer-string-slice": "off"
}
},
"engines": {
"node": ">= 8"
}
}