forked from chris-rock/bunyan-logstash-tcp
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "bunyan-logstash-tcp",
"description": "Logstash TCP plugin for Bunyan",
"version": "1.0.0",
"repository": "https://github.com/transcovo/bunyan-logstash-tcp.git",
"homepage": "https://github.com/transcovo/bunyan-logstash-tcp",
"main": "dist/lib/logstash.js",
"author": "Christoph Hartmann",
"license": "MIT",
"keywords": [
"logstash",
"bunyan",
"tcp",
"log",
"logger"
],
"dependencies": {
"CBuffer": "2.0.0"
},
"peerDependencies": {
"bunyan": "1.x"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"bunyan": "1.x",
"chai": "3.5.0",
"co-mocha": "1.2.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-config-cp": "5.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0",
"istanbul": "0.4.5",
"mocha": "3.3.0",
"sinon": "2.2.0"
},
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "npm run eslint && npm run coverage",
"eslint": "eslint src --max-warnings=0",
"coverage": "LOGGER_LEVEL=fatal istanbul cover _mocha --root ./src/lib -- src/test",
"mocha": "mocha --bail src/test",
"build": "npm run transpile && npm run test-dist",
"transpile": "babel src -d dist",
"test-dist": "mocha --bail dist/test",
"prepare": "npm run build"
},
"files": [
"dist"
]
}