-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "@log4js-node/log4js-api",
"version": "1.0.2",
"description": "For libraries that want to include log4js for logging, but don't want to introduce version conflicts for users that also use log4js. Delegates to whatever log4js version can be found, but does not introduce a specific log4js version.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/log4js-node/log4js-api.git"
},
"scripts": {
"lint": "eslint lib/ test/",
"prepush": "npm test",
"commitmsg": "validate-commit-msg",
"pretest": "eslint lib/**/* test/**/*",
"test": "tap 'test/**/*.js' --100",
"coverage": "tap 'test/**/*.js' --100",
"codecov": "tap 'test/**/*.js' --cov --coverage-report=lcov && codecov"
},
"keywords": [
"log4js",
"logging",
"logger",
"api",
"compatibility"
],
"author": "Gareth Jones <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"codecov": "^2.2.0",
"eslint": "^4.0.0",
"husky": "^0.14.0",
"nyc": "^11.0.2",
"sandboxed-module": "^2.0.3",
"tap": "^10.5.2",
"validate-commit-msg": "^2.12.2"
},
"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 72 chars\n# a body line no more than 72 chars"
}
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
],
"require": [
"./sandbox-coverage"
]
},
"typings": "./index.d.ts"
}