-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.33 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
{
"name": "hagen",
"version": "2.0.2",
"description": "A colorful logger for JS in Node and the Browser",
"author": "John Mars <[email protected]> (http://hellomars.dev)",
"repository": "github:j0hnm4r5/hagen",
"license": "MIT",
"keywords": [
"logger",
"node",
"browser",
"console",
"reporter",
"print",
"colorful",
"commonjs",
"elegant",
"beautiful"
],
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"module": "dist/hagen.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsdx build",
"lint": "eslint --fix src",
"prepare": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why",
"start": "tsdx watch",
"release": "np"
},
"dependencies": {
"chalk": "^4"
},
"devDependencies": {
"@j0hnm4r5/eslint-config": "^2.1.8",
"@size-limit/preset-small-lib": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"np": "^7.6.2",
"prettier": "2.7.1",
"size-limit": "^8.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}