-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "comuni-service",
"version": "0.5.0",
"description": "micro-service to get italian municipality data",
"repository": {
"type": "git",
"url": "https://github.com/JuanRamino/comuni-service"
},
"engines": {
"node": ">=8.11"
},
"keywords": [],
"author": "Juan Ramino",
"license": "ISC",
"scripts": {
"lint": "eslint .",
"test": "nyc --reporter=lcov mocha test/*.test.js",
"cover": "npm run test && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"start": "node src/server.js",
"update:comuni": "node bin/updateComuni.js"
},
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.18.3",
"csv-parse": "^4.2.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"iconv-lite": "^0.4.24",
"lodash": "^4.17.11",
"pino": "^5.10.1",
"request": "^2.88.0",
"yauzl": "^2.10.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"husky": "^1.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}