-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
{
"name": "@simplyhexagonal/logger",
"version": "2.1.1",
"description": "Extensible debug logger with singleton capabilities, made to easily broadcast to multiple communication channels/transports",
"repository": "https://github.com/simplyhexagonal/logger",
"license": "Apache-2.0",
"main": "dist/logger.js",
"types": "dist/logger.d.ts",
"contributors": [
{
"name": "Alejandro Merino",
"email": "alejandro.sonnor@gmail.com"
},
{
"name": "Jean M. Lescure",
"email": "jeanmlescure@gmail.com",
"url": "http://jeanlescure.io/"
}
],
"scripts": {
"dev": "scripty",
"test": "scripty",
"build": "scripty",
"release": "release-it"
},
"release-it": {
"git": {
"changelog": "auto-changelog --stdout -l false -u -t ./assets/changelog-compact.hbs"
},
"hooks": {
"after:bump": "scripty"
},
"npm": {
"publish": false
}
},
"files": [
"dist",
"src",
"runkit.js",
"README.md",
"package.json"
],
"runkitExampleFilename": "./runkit.js",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.11",
"auto-changelog": "^2.3.0",
"esbuild": "^0.12.25",
"jest": "^27.1.0",
"refup": "^1.1.0",
"release-it": "^14.11.5",
"scripty": "^2.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/xxhashjs": "^0.2.2",
"ansicolor": "^1.1.95",
"serialize-error": "^8.1.0",
"xxhashjs": "^0.2.2"
}
}