-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.59 KB
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
{
"name": "@log4js2/http-appender",
"version": "1.0.0-beta.1",
"description": "Log4js2 appender for HTTP resources",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"posttest": "codecov -f coverage/*.json"
},
"author": {
"name": "Robin Schultz",
"email": "robin@anigenero.com",
"url": "http://anigenero.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anigenero/log4js2-http-appender.git"
},
"bugs": {
"url": "https://github.com/anigenero/log4js2-http-appender/issues"
},
"keywords": [
"log4js2",
"appender",
"http",
"logging",
"log4js"
],
"license": "MIT",
"homepage": "https://github.com/anigenero/log4js2-http-appender#readme",
"devDependencies": {
"@log4js2/core": "^2.0.0-beta.2",
"@types/jest": "^23.3.9",
"@types/lodash": "^4.14.118",
"@types/node": "^10.12.2",
"codecov": "^3.1.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-sonarts": "^1.8.0",
"typescript": "^3.1.6"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"testMatch": [
"**/__tests__/*.spec.(t|j)s"
],
"transform": {
"^.+\\.(t|j)s?": "ts-jest"
}
},
"dependencies": {
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.12"
}
}