-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1014 Bytes
/
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
{
"name": "bunyan-couchdb-stream",
"version": "0.1.3",
"description": "A writable stream that writes log JSON objects (as generated by bunyan) to CouchDB / PouchDB",
"main": "index.js",
"scripts": {
"test": "mocha --exit",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scienceai/bunyan-couchdb-stream.git"
},
"keywords": [
"couchdb",
"bunyan",
"log",
"stream"
],
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": "@scipe"
},
"author": "Sebastien Ballesteros",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scienceai/bunyan-couchdb-stream/issues"
},
"homepage": "https://github.com/scienceai/bunyan-couchdb-stream#readme",
"devDependencies": {
"@scipe/eslint-config": "^1.0.0",
"bunyan": "^1.5.1",
"follow": "^1.1.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2"
},
"dependencies": {
"request": "^2.61.0"
}
}