-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "@croct/logging",
"version": "0.0.0-dev",
"description": "An interoperability layer for logging libraries.",
"author": {
"name": "Croct",
"email": "[email protected]",
"url": "https://github.com/croct-tech/logging-js"
},
"license": "MIT",
"keywords": [
"croct",
"logging",
"logger",
"typescript"
],
"types": "index.d.ts",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/logging-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/logging-js/issues"
},
"homepage": "https://github.com/croct-tech/logging-js",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json && cp package.json dist/"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.7.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.8",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"files": [
"**/*.js",
"**/*.ts"
],
"dependencies": {
"@croct/json": "^2.0.1"
}
}