-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.04 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@ssense/node-logger",
"version": "1.1.2",
"description": "Application and access logger",
"main": "src/index.js",
"typings": "index.d.ts",
"scripts": {
"prepublish": "npm run compile",
"compile": "rm -rf src/* && tsc",
"lint": "tslint -c tslint.json ./ts/*.ts ./tests/{,**/}*.ts ./tests/**/**/*.ts --format verbose",
"test": "NODE_ENV=test mocha tests/unit --recursive --compilers ts:ts-node/register --bail",
"cover": "nyc --report-dir tests/coverage/ npm run test",
"coveralls": "cat tests/coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSENSE/node-logger.git"
},
"keywords": [
"logger",
"restify"
],
"author": "Rémy Jeancolas <remy.jeancolas@ssense.com>",
"contibutors": [{
"name": "Cédric Maruéjol",
"email": "cedric.maruejol@ssense.com"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/SSENSE/node-logger/issues"
},
"homepage": "https://github.com/SSENSE/node-logger#readme",
"dependencies": {
"@types/express": "^4.0.35",
"@types/restify": "^2.0.41",
"moment": "^2.17.1",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"uuid": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
"@types/node": "^6.0.64",
"@types/on-finished": "^2.2.29",
"@types/sinon": "^1.16.35",
"@types/supertest": "^2.0.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"express": "^4.14.1",
"mocha": "^3.2.0",
"nyc": "^8.4.0",
"restify": "^4.3.0",
"sinon": "^1.17.7",
"supertest": "^3.0.0",
"ts-node": "^1.7.3",
"tslint": "^4.5.0",
"tslint-microsoft-contrib": "^4.0.0",
"typescript": "^2.2.1"
},
"nyc": {
"include": [
"ts/*.ts"
],
"exclude": [
"node_modules",
"ts/index.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov",
"text-summary"
]
}
}