-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 KB
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
{
"name": "ty-nodejs-logger",
"version": "1.0.10",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "git@github.com:Trendyol/nodejs-logger.git",
"license": "MIT",
"contributors": [
"Cihad Horuzoglu <cihad.horuzoglu@trendyol.com>",
"Ismail Hakki Tekin <ismail.tekin@trendyol.com>"
],
"scripts": {
"test": "jest --coverage --silent",
"test:watch": "jest --watchAll",
"lint": "tslint -c tslint.json --project tsconfig.json \"src/**/*\" \"test/**/*\" --fix",
"format": "prettier --write --loglevel=error \"src/**/*\" \"test/**/*\"",
"cov": "jest --coverage",
"build": "tsc"
},
"pre-commit": [
"format",
"lint",
"test"
],
"devDependencies": {
"@types/express": "^4.16.1",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"@types/sinon": "^7.0.11",
"faker": "^4.1.0",
"fixture-repository": "^1.2.2",
"jest": "^24.8.0",
"pre-commit": "^1.2.2",
"prettier": "^1.17.0",
"sinon": "^7.3.2",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.4.5",
"tslint-config-airbnb": "^5.11.1"
},
"dependencies": {
"graylog2": "^0.2.1"
}
}