-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "@sorrir/sorrir-logging",
"version": "2.1.0",
"description": "Logging repository for SORRIR projects.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint-test": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"build": "tsc --incremental",
"start": "node dist/app.js",
"test": "jest -i",
"prepublishOnly": "rm -rf dist && npm run build"
},
"pre-commit": [
"lint-fix"
],
"files": [
"dist"
],
"keywords": [
"sorrir"
],
"author": "Florian Held",
"license": "Apache-2.0",
"dependencies": {
"@types/winston": "^2.4.4",
"logform": "^2.2.0",
"os": "^0.1.1",
"typescript": "^3.9.7",
"winston": "^3.3.3",
"winston-elasticsearch": "0.12.2"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.12.53",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1",
"ts-jest": "^24.2.0"
}
}