-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "winston-testified-console",
"version": "0.0.2",
"description": "Configures Winston’s Console transport to send all log messages to stderr to keep test output clean",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint *.js test/**/*.js",
"test": "mocha --opts test/mocha.opts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prometheas/winston-testified-console.git"
},
"keywords": [
"winston",
"test"
],
"author": "John Lianoglou <https://github.com/prometheas>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prometheas/winston-testified-console/issues"
},
"homepage": "https://github.com/prometheas/winston-testified-console#readme",
"dependencies": {
"winston": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0",
"shelljs": "^0.7.6"
},
"engines": {
"node": ">=6"
}
}