-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
46
47
{
"name": "ty-nodejs-logger",
"version": "1.3.4",
"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.17.1",
"@types/faker": "^4.1.5",
"@types/jest": "26.0.24",
"@types/node": "^12.0.0",
"@types/uuid": "^3.4.5",
"@types/sinon": "^7.0.13",
"faker": "^4.1.0",
"fixture-repository": "^1.2.2",
"jest": "26.6.3",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"sinon": "^7.4.2",
"ts-jest": "^24.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.6.3"
},
"dependencies": {
"graylog2": "^0.2.1",
"uuid": "^3.3.3"
}
}