-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 893 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 893 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
{
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"files": [
"src",
"dist"
],
"name": "@profico/profico-logger",
"version": "1.0.0",
"description": "A simple logger with Slack support",
"main": "index.ts",
"scripts": {
"test": "jest src/*.test.ts",
"build": "tsup ./src",
"publish": "npm publish",
"dry": "npm publish --dry-run",
"ci": "npm i && npm run build && npm run test && npm run dry && npm run publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/profico/logger.git"
},
"keywords": [
"logger",
"slack"
],
"author": "Ivan Kulis",
"license": "ISC",
"bugs": {
"url": "https://github.com/profico/logger/issues"
},
"homepage": "https://github.com/profico/logger#readme"
}