forked from logdna/logger-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.84 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
{
"name": "@logdna/logger",
"version": "2.3.2",
"description": "LogDNA's Node.js Logging Module.",
"main": "index.js",
"types": "types.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "tap",
"pretest:ci": "npm run lint",
"test:ci": "tools/test-ci.sh",
"release": "semantic-release"
},
"release": {
"branches": [
"main"
],
"extends": "semantic-release-config-logdna"
},
"repository": {
"type": "git",
"url": "git+https://github.com/logdna/logger-node.git"
},
"keywords": [
"logdna",
"logs",
"logging",
"winston",
"bunyan",
"nodejs",
"node",
"logdna.com",
"logger",
"javascript"
],
"author": {
"name": "LogDNA, Inc.",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/logdna/logger-node/issues"
},
"homepage": "https://github.com/logdna/logger-node#readme",
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules/",
"coverage/"
],
"extends": [
"logdna"
],
"parserOptions": {
"ecmaVersion": 2019
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"agentkeepalive": "^4.1.3",
"axios": "^0.21.1",
"events": "^3.3.0",
"https-proxy-agent": "^5.0.0",
"json-stringify-safe": "^5.0.1",
"querystring-es3": "^0.2.1",
"react-native-base64": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"eslint": "^7.4.0",
"eslint-config-logdna": "^4.0.2",
"nock": "^13.0.2",
"semantic-release": "^17.4.2",
"semantic-release-config-logdna": "^1.1.1",
"tap": "^14.11.0",
"tap-parser": "^10.1.0",
"tap-xunit": "^2.4.1"
}
}