-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 798 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 798 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
{
"version": "1.0.5",
"name": "pinomin",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"description": "Minimalistic logger compatible with pino",
"homepage": "https://github.com/dbgate/pinomin",
"repository": {
"type": "git",
"url": "https://github.com/dbgate/pinomin"
},
"author": "Jan Prochazka",
"license": "MIT",
"keywords": [
"logger",
"pino",
"json"
],
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"test": "jest",
"test:ci": "jest --json --outputFile=result.json --testLocationInResults",
"prepare": "yarn build"
},
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.7.0",
"jest": "^24.9.0",
"ts-jest": "^25.2.1",
"typescript": "^4.4.3"
}
}