-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.17 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
{
"name": "@log4js-node/rabbitmq",
"version": "2.0.0",
"description": "RabbitMQ Appender for log4js-node",
"homepage": "https://log4js-node.github.io/log4js-node/",
"files": [
"lib",
"types"
],
"keywords": [
"logging",
"log",
"log4j",
"node",
"rabbitmq"
],
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"author": "Gareth Jones <gareth.nomiddlename@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/log4js-node/rabbitmq.git"
},
"bugs": {
"url": "http://github.com/log4js-node/rabbitmq/issues"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"prepush": "npm test",
"commitmsg": "validate-commit-msg",
"pretest": "eslint 'lib/**/*.js' 'test/**/*.js'",
"test": "tap 'test/tap/**/*.js' --100",
"codecov": "tap 'test/tap/**/*.js' --cov --coverage-report=lcov && codecov"
},
"directories": {
"test": "test",
"lib": "lib"
},
"dependencies": {
"amqplib": "0.8.0",
"debug": "4.3.3"
},
"devDependencies": {
"@log4js-node/sandboxed-module": "^2.1.1",
"codecov": "^3.0.0",
"conventional-changelog": "^3.1.25",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-node": "^0.3.1",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"nyc": "^14.1.1",
"tap": "^16.3.4",
"validate-commit-msg": "^2.14.0"
},
"browser": {
"os": false
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"example",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 72,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "\n# allowed type: feat, fix, docs, style, refactor, example, perf, test, chore, revert\n# subject no more than 50 chars\n# a body line no more than 72 chars"
}
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
],
"require": [
"./test/sandbox-coverage"
]
}
}