forked from tsedio/logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@tsed/logger-root",
"version": "5.5.3",
"description": "A multi channel logger written in TypeScript.",
"private": true,
"scripts": {
"clean": "monorepo clean workspace",
"test": "yarn clean && yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test nyc mocha",
"test:lint": "tslint --project tsconfig.json",
"test:lint:fix": "tslint --project tsconfig.json --fix",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "monorepo build",
"sync:packages": "monorepo sync packages",
"docs:serve": "yarn api:build && yarn vuepress:serve",
"docs:build": "yarn api:build && yarn vuepress:build",
"docs:publish": "yarn docs:build && monorepo publish ghpages",
"api:build": "lerna run build && ts-doc",
"vuepress:build": "cross-env NODE_ENV=production vuepress build docs",
"vuepress:serve": "vuepress dev docs",
"prettier": "prettier '{packages,test}/**/*.ts' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run"
},
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/logger.git"
},
"keywords": [
"ts",
"log",
"debug",
"typescript",
"trace"
],
"author": "Romain Lenzotti",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypedProject/logger/issues"
},
"homepage": "https://github.com/TypedProject/logger",
"dependencies": {
"lerna": "3.18.4",
"colors": "^1.3.3",
"date-format": "^3.0.0",
"semver": "^5.6.0",
"streamroller": "^1.0.3",
"tslib": "1.10.0",
"nodemailer": "^6.4.2"
},
"devDependencies": {
"@tsed/monorepo-utils": "1.8.3",
"@typedproject/ts-doc": "4.0.6",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.0",
"@types/sinon": "^7.0.9",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.0.0",
"concurrently": "^4.1.0",
"coveralls": "^3.0.3",
"cross-env": "6.0.3",
"gflow": "^4.0.5",
"husky": "^4.2.5",
"lint-staged": "^8.1.0",
"mocha": "7.1.0",
"nyc": "^13.3.0",
"prettier": "^1.13.5",
"semantic-release": "^15.13.18",
"sinon": "^7.2.7",
"sinon-chai": "^3.3.0",
"source-map-support": "0.5.16",
"ts-node": "^8.0.3",
"tsconfig-paths": "3.9.0",
"tslint": "^5.13.1",
"typescript": "3.5.3",
"vue": "2.6.11",
"vuepress": "1.4.0",
"vue-analytics": "5.17.2",
"vuepress-theme-tsed": "2.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"directories": {
"packages": "packages",
"test": "test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"resolutions": {
"watchpack": "1.6.1"
},
"monorepo": {
"productionBranch": "production",
"npmAccess": "public",
"ghpages": {
"dir": "./docs/.vuepress/dist",
"url": "https://github.com/TypedProject/logger.git",
"branch": "gh-pages",
"cname": "logger.tsed.io"
}
}
}