-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "logtify-logstash",
"version": "1.1.0",
"description": "Logstash link chain for logtify logger",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/index.js",
"lint": "./node_modules/.bin/eslint .",
"cover": "CONSOLE_LOGGING=false ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/_mocha test --recursive --timeout=10000 --exit",
"test": "npm run lint && npm run cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dial-once/node-logtify-logstash.git"
},
"author": "Dial Once",
"license": "MIT",
"bugs": {
"url": "https://github.com/dial-once/node-logtify-logstash/issues"
},
"homepage": "https://github.com/dial-once/node-logtify-logstash#readme",
"dependencies": {
"logtify": ">=1.1.0",
"winston": "^2.3.1",
"winston-logstash": "^0.3.0",
"sinon": "^1.17.6"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2"
}
}