-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.75 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
{
"name": "@log4js-node/logfaces-http",
"version": "1.0.0",
"description": "LogFaces HTTP Appender for log4js-node",
"homepage": "https://log4js-node.github.io/log4js-node/",
"files": [
"lib",
"types"
],
"keywords": [
"logging",
"log",
"log4j",
"node",
"logfaces"
],
"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/logFaces-HTTP.git"
},
"bugs": {
"url": "http://github.com/log4js-node/logFaces-HTTP/issues"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"prepare": "is-ci || husky install",
"prettier:fix": "prettier --write .",
"pretest": "prettier --check . && eslint \"lib/**/*.js\" \"test/**/*.js\"",
"test": "tap test/tap/**/*.js --100",
"typings": "tsc -p types/tsconfig.json"
},
"directories": {
"test": "test",
"lib": "lib"
},
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@log4js-node/sandboxed-module": "^2.2.1",
"conventional-changelog": "^3.1.25",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"log4js": "^6.5.2",
"nyc": "^15.1.0",
"prettier": "^2.7.0",
"tap": "^16.2.0",
"typescript": "^4.7.2"
},
"browser": {
"os": false
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
],
"require": [
"./test/sandbox-coverage"
]
}
}