-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "dexlog",
"version": "1.1.2",
"description": "a logger for developers",
"homepage": "https://github.com/pwmcintyre/dexlog",
"author": "Peter McIntyre",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pwmcintyre/dexlog"
},
"keywords": [
"log",
"logger",
"logging",
"structured",
"json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist coverage",
"lint": "prettier --write .",
"test": "jest",
"test-coverage": "jest --coverage",
"prebuild": "npm run clean && npm run lint && npm run test",
"build": "tsc",
"benchmark": "ts-node ./benchmark.ts",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^26.6.3",
"prettier": "2.0.5",
"ts-jest": "^26.5.6",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
}
}