forked from d-fischer/logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@d-fischer/logger",
"version": "4.2.3",
"description": "A simple logger for Node and the browser.",
"main": "lib",
"types": "lib",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./es/index.mjs"
}
},
"sideEffects": false,
"repository": "github:d-fischer/logger",
"author": "Daniel Fischer <[email protected]>",
"funding": "https://github.com/sponsors/d-fischer",
"license": "MIT",
"dependencies": {
"@d-fischer/detect-node": "^3.0.1",
"@d-fischer/shared-utils": "^3.6.1",
"tslib": "^2.5.0"
},
"devDependencies": {
"@d-fischer/eslint-config": "^6.1.8",
"@types/jest": "^29.5.1",
"@types/node": "^14.14.19",
"eslint": "^8.40.0",
"husky": "^4.3.6",
"jest": "^29.5.0",
"jest-environment-node": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tsukuru": "^0.8.0",
"typescript": "~5.0.4"
},
"files": [
"LICENSE",
"README.md",
"lib",
"es",
"!**/__tests__"
],
"scripts": {
"lint": "eslint --ext ts src",
"prettier:check": "prettier --check 'src/**'",
"prettier:fix": "prettier --write 'src/**'",
"test": "jest",
"build": "tsukuru",
"rebuild": "tsukuru --clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": "prettier --write",
"*.{js,ts}": "eslint --fix"
}
}