forked from SAP/cf-nodejs-logging-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
48
49
{
"name": "cf-nodejs-logging-support",
"version": "5.2.4",
"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": {
"jsonwebtoken": "^8.5.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"import-fresh": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mock-require": "^3.0.3",
"node-mocks-http": "^1.7.6",
"rewire": "^4.0.1",
"sinon": "^7.3.2",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --timeout 10000",
"coverage": "codecov"
}
}