-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "loopback-component-winston",
"version": "0.0.3",
"description": "Winston logger component for loopback",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "npm run lint",
"test": "./node_modules/.bin/mocha --timeout 30000 test/**/*test.js",
"test:debug": "npm run test -- --debug-brk"
},
"repository": {
"type": "git",
"url": "git://github.com/kolach/loopback-component-winston.git"
},
"keywords": [
"loopback",
"component",
"logger",
"winston"
],
"author": "Nick Chistyakov",
"license": "MIT",
"bugs": {
"url": "https://github.com/kolach/loopback-component-winston/issues"
},
"homepage": "https://github.com/kolach/loopback-component-winston#readme",
"dependencies": {
"lodash": "^4.17.15",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"loopback": "^3.26.0",
"mocha": "^6.2.0",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2",
"winston-transport": "^4.3.0"
}
}