-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 943 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
{
"name": "logger-app",
"version": "1.0.0",
"description": "",
"author": "Jude Niroshan",
"license": "MIT",
"scripts": {
"start": "node src/run.js",
"lint": "node_modules/.bin/eslint src spec",
"lint-fix": "node_modules/.bin/eslint --fix src spec",
"test": "nyc --reporter=lcov mocha --recursive \"./spec/**/*.spec.js\"",
"coverage": "codecov --disable=gcv"
},
"pre-commit": [
"lint"
],
"dependencies": {
"@grpc/proto-loader": "^0.6.0",
"bunyan": "^1.8.13",
"eureka-js-client": "^4.5.0",
"grpc": "^1.24.2",
"os": "^0.1.1",
"uuid": "^8.0.0",
"uuid-random": "^1.3.0"
},
"devDependencies": {
"codecov": "^3.6.5",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"expect": "^27.0.1",
"firstline": "^2.0.2",
"lodash": "^4.17.15",
"mocha": "^9.0.0",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"remark-stringify": "^9.0.0"
}
}