-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.78 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
52
53
54
55
56
57
58
{
"name": "concurrency-logger",
"version": "2.1.0",
"description": "Log HTTP requests/responses separately, visualize their concurrency and report logs/errors in context of a request",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"compile": "babel ./src --out-dir ./lib",
"coverage": "nyc npm test && nyc report --reporter=text-lcov",
"create-fixtures": "TZ=UTC rm -rf ./test/fixtures && mkdir ./test/fixtures && CREATE_FIXTURES=true npm run test",
"lint": "eslint .",
"prepublish": "rm -rf ./lib && npm run compile",
"preversion": "npm run test",
"report-coverage": "npm run coverage | coveralls",
"test": "TZ=UTC mocha --compilers js:babel-core/register",
"travis": "npm run lint && npm run compile && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PabloSichert/concurrency-logger.git"
},
"keywords": [
"http",
"request",
"log",
"logger",
"concurrent",
"concurrency",
"koa",
"middleware"
],
"author": "Pablo Sichert <mail@pablosichert.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PabloSichert/concurrency-logger/issues"
},
"homepage": "https://github.com/PabloSichert/concurrency-logger#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"mocha": "^3.1.2",
"nyc": "^8.3.2",
"sinon": "^1.17.6",
"unexpected": "^10.18.1",
"unexpected-sinon": "^10.5.0"
},
"dependencies": {
"ansi-256-colors": "^1.1.0"
}
}