-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 852 Bytes
/
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
{
"name": "@rhighs/gen2e-logger",
"version": "1.0.3",
"description": "simple, minimal and dependency-free logger supporting terminal colors",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.2.5",
"jest": "^29.7.0",
"open": "^10.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"start": "tsx ./examples/example.ts",
"ts-node": "ts-node",
"format": "prettier --write ./src",
"lint": "prettier --check ./src",
"test": "jest tests/unit/**.test.ts",
"test-watch": "jest --watch"
},
"author": "Roberto Montalti",
"license": "MIT"
}