-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "optional-syslog",
"version": "1.0.0",
"description": "Syslog package that exposes modern-syslog when possible, otherwise provides a stub",
"main": "index.js",
"engines": {
"node": ">=8.0"
},
"scripts": {
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc mocha",
"posttest": "npm run coverage",
"coverage": "nyc report --reporter=lcov",
"lint": "eslint -v && eslint ."
},
"author": "David Csirmaz",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/csimi/optional-syslog.git"
},
"files": [
"index.js",
"lib/**"
],
"dependencies": {
"syslog-constants": "^1.1.0"
},
"optionalDependencies": {
"modern-syslog": "^1.2.0"
},
"devDependencies": {
"@csimi/eslint-config": "^2.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"eslint": "^6.6.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"source-map-support": "^0.5.16"
},
"keywords": [
"syslog",
"optional",
"windows",
"posix"
]
}