-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.62 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
50
51
{
"name": "winston-cls-formatter",
"version": "0.0.4",
"main": "dist/index.js",
"license": "MIT",
"description": "Formatter that binds CLS (continuation local storage) to metadata",
"keywords": [
"logging",
"winston",
"cls",
"express",
"monitoring",
"tracing"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"rebuild": "yarn clean && yarn build",
"lint": "node_modules/.bin/tslint src/**/*.ts",
"test": "./node_modules/mocha/bin/mocha --require ts-node/register test/**/*.spec.ts",
"test:debug": "./node_modules/mocha/bin/mocha --require ts-node/register --inspect test/**/*.spec.ts",
"buildTypeDocs": "yarn rebuild && rm -rf docs && ./node_modules/.bin/typedoc --excludeNotExported --out docs --hideGenerator src/index.ts --module commonjs --gaID UA-145937705-1 --readme none && touch docs/.nojekyll",
"coverage": "rm -rf coverage && nyc yarn test",
"ci": "yarn lint && yarn coverage && ./node_modules/.bin/codecov -f coverage/coverage-final.json"
},
"dependencies": {
"winston": "^3.2.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.0",
"@types/cls-hooked": "^4.3.0",
"@types/mocha": "^5.2.7",
"@types/typescript": "^2.0.0",
"chai": "^4.2.0",
"cls-hooked": "^4.2.2",
"codecov": "^3.5.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.13",
"ts-lint": "^4.5.1",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.15.0",
"winston-transport": "^4.3.0"
},
"files": [
"dist"
]
}