-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "log4js-json-layout",
"version": "2.2.3",
"description": "Provides a slim and easy to use json-layout for log4js-node",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/id0Sch/log4js-json-layout.git"
},
"author": "Ido Schachter <ido.schachter@ironsrc.com>",
"contributors": [
{
"name": "Jon Peck",
"email": "jpeck@fluxsauce.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/id0Sch/log4js-json-layout/issues"
},
"homepage": "https://github.com/id0Sch/log4js-json-layout#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-lodash": "^2.4.4",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.1.0",
"mocha": "^2.5.3",
"nyc": "^11.0.3"
},
"dependencies": {
"colors": "^1.1.2",
"lodash": "^4.17.4"
},
"engines": {
"node": ">=6"
}
}