-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 940 Bytes
/
package.json
File metadata and controls
42 lines (41 loc) · 940 Bytes
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
{
"name": "@rathfi/logger",
"version": "1.0.1",
"description": "Logger used by rathfi",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"lint": "eslint src --ext .ts"
},
"keywords": [
"logger",
"typescript",
"logging",
"debug"
],
"author": "Rath",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/rathfinance/logger"
},
"publishConfig": {
"access": "public"
}
}