-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "micro-correlation-id",
"version": "2.0.1",
"decription": "Correlate http requests across microservices built with zeit/micro",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"homepage": "https://github.com/tafarij/micro-correlation-id",
"author": "Tafari Johnson <dev.fyah@gmail.com> (http://tafarijohnson.com)",
"repository": {
"type": "git",
"url": "https://github.com/tafarij/micro-correlation-id"
},
"bugs": {
"url": "https://github.com/tafarij/micro-correlation-id/issues"
},
"keywords": [
"micro",
"correlation",
"debug",
"logging",
"microservice"
],
"scripts": {
"test": "tap",
"lint:staged": "pretty-quick --staged",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"husky": "^8.0.2",
"micro": "^10.0.1",
"node-fetch": "^2.6.1",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.5",
"tap": "^16.3.2",
"test-listen": "^1.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}