-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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": "codes-postaux",
"version": "4.1.2",
"description": "French postal codes API for Node.js",
"repository": "https://github.com/BaseAdresseNationale/codes-postaux",
"keywords": [
"france",
"codes postaux",
"open data",
"postal code",
"French"
],
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/BaseAdresseNationale/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.21"
},
"devDependencies": {
"@etalab/decoupage-administratif": "4.0.0",
"ava": "^5.1.0",
"csv-parser": "^3.0.0",
"decompress": "^4.2.1",
"fs-extra": "^11.1.0",
"get-stream": "^6.0.1",
"got": "^11.8.5",
"into-stream": "^6.0.0",
"split2": "^4.1.0",
"xo": "^0.53.1"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"curly": "off",
"comma-dangle": [
"error",
"never"
],
"unicorn/prefer-module": "off",
"unicorn/prefer-string-slice": "off",
"unicorn/prefer-top-level-await": "off",
"import/extensions": "off",
"node/prefer-global/process": "off"
}
},
"engines": {
"node": ">= 12"
}
}