-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "@deinstapel/tldr",
"version": "0.0.0-development",
"description": "TypeScript Logging Library",
"main": "build/cjs/index.js",
"module": "build/module/index.js",
"types": "build/types/index.d.ts",
"private": false,
"sideEffects": false,
"files": [
"build"
],
"scripts": {
"build": "npm run lint && npm run build:ts",
"build:ts": "tsc -p tsconfig.module.json && tsc -p tsconfig.cjs.json",
"build:docs": "typedoc --out docs --readme README.md --target esnext --theme default --mode file src --ignoreCompilerErrors",
"lint": "eslint src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"example": "cd example && ts-node -r tsconfig-paths/register -P tsconfig.json",
"semantic-release": "semantic-release",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/deinstapel/tldr.git"
},
"keywords": [
"logging",
"typescript",
"structured",
"logger",
"log"
],
"author": {
"name": "Martin Koppehel",
"email": "[email protected]",
"url": "https://mko.dev"
},
"contributors": [
"Johann Wagner",
"Marten Gartner"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/deinstapel/tldr/issues"
},
"homepage": "https://github.com/deinstapel/tldr#readme",
"dependencies": {
"chalk": "^4.1.0"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"semantic-release": "^17.4.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.0.0",
"typedoc": "^0.20.32",
"typescript": "^4.2.3",
"typescript-eslint": "0.0.1-alpha.0"
}
}