-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "winston-transmission",
"version": "2.3.3",
"description": "Winston Transmission: logger built on top of winston",
"main": "./lib/index.js",
"author": "Ahmad Bamieh <ahmadbamieh@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "/~https://github.com/Bamieh/winston-transmission"
},
"engines": {
"node": ">=6.10"
},
"optionalDependencies": {
"raven-js": "^3.x",
"raven": "^2.x"
},
"peerDependencies": {
"raven": "^2.x",
"raven-js": "^3.x"
},
"dependencies": {
"browser-stdout": "^1.3.0",
"lodash.clonedeep": "^4.5.0",
"lodash.defaultsdeep": "^4.6.0",
"lodash.defaults": "^4.2.0",
"lodash.isnil": "^4.0.0",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"codecov": "^3.0.0",
"cross-env": "^4.0.0",
"mocha": "^4.0.1",
"nyc": "^10.2.0",
"raven": "^2.2.1"
},
"scripts": {
"test": "mocha",
"test:watch": "npm run test -- --reporter min --watch",
"coverage": "nyc npm run test && nyc report --reporter=html && open coverage/index.html",
"report-coverage": "nyc npm run test && nyc report --reporter=lcov > coverage.lcov && codecov"
}
}