forked from SAP/cf-nodejs-logging-support
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1006 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1006 Bytes
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": "cf-nodejs-logging-support",
"version": "1.1.2",
"description": "Logging tool for Cloud Foundry",
"keywords": [
"logging",
"cf",
"perfx"
],
"repository": {
"type": "git",
"url": "https://github.com/SAP/cf-nodejs-logging-support"
},
"license": "Apache-2.0",
"author": {
"name": "Christian Dinse, Nicklas Dohrn"
},
"main": "./index.js",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"uuid": "3.0.1",
"winston": "2.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "latest",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mock-require": "^1.3.0",
"rewire": "^2.5.2",
"sinon": "latest"
},
"maintainers": [
{
"name": "nicklas dohrn"
},
{
"name": "christian dinse"
}
],
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha"
}
}