-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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
63
64
65
66
67
68
69
70
{
"name": "logging-library",
"version": "0.5.0",
"license": "MIT",
"author": "Christoph Fricke <christoph@frickeonline.de> (https://christoph-fricke.de)",
"description": "Extensible logger with simple class based, fluent interface api written in typescript.",
"keywords": [
"logging",
"logger",
"ts",
"typescript",
"class based",
"fluent interface",
"context",
"extensible"
],
"homepage": "https://logging-library.vercel.app",
"repository": "github:christoph-fricke/logging-library",
"main": "lib/umd/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": " npm test && npm run build",
"build": "rm -rf lib && rollup -c rollup.config.ts",
"build:docs": "rm -rf docs && typedoc --out docs src/index.ts",
"format": "prettier --write .",
"lint": "eslint . && prettier -c .",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup": "^2.41.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.3",
"tslib": "^2.1.0",
"typedoc": "^0.20.30",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md,yml}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint",
"npm run test -- --watchAll false --bail --findRelatedTests"
]
}
}