-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "insee-municipality-code",
"version": "1.2.1",
"description": "🇫🇷 Get the INSEE municipality code from postal code and name of French municipality",
"main": "dist/index.js",
"author": "Aymeric Bouzy <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"INSEE",
"municipality",
"fuzzy"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^22.4.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.1",
"jest": "^22.4.0",
"prettier": "^1.13.7",
"regenerator-runtime": "^0.11.1"
},
"scripts": {
"test": "jest",
"build": "babel src --out-dir dist --ignore '**/*.test.js'",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "aymericbouzy/insee-municipality-code"
},
"homepage": "https://github.com/aymericbouzy/insee-municipality-code",
"files": [
"dist",
"data"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"fuse.js": "^3.2.0"
}
}