-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "@jclem/logfmt2",
"description": "Parses logs and stringifies logs into the logfmt format",
"version": "2.4.3",
"author": "Jonathan Clem <jonathan@jclem.net>",
"bugs": {
"url": "https://github.com/jclem/logfmt2/issues"
},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.0.2",
"@types/logfmt": "^1.2.2",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"benchmark": "^2.1.4",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"jest": "^27.3.1",
"logfmt": "^1.3.2",
"memory-streams": "^0.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">= 14.x",
"npm": ">= 7.x"
},
"homepage": "https://github.com/jclem/logfmt2#readme",
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"js",
"ts"
]
},
"keywords": [
"logfmt",
"logging"
],
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jclem/logfmt2.git"
},
"scripts": {
"benchmark": "ts-node ./benchmark.ts",
"build": "tsc",
"check": "run-p -l --continue-on-error --aggregate-output check:*",
"check:build": "tsc --noEmit",
"check:lint": "eslint .",
"check:format": "prettier . --check",
"test": "jest",
"prepare": "husky install"
},
"types": "./dist/index.d.ts"
}