-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 864 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
{
"name": "winston-cassandra",
"version": "0.4.0",
"description": "Cassandra transport for winston",
"author": "Jorge Bay <[email protected]>",
"keywords": [
"cassandra",
"logging",
"log",
"transport",
"winston"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jorgebay/winston-cassandra/raw/master/LICENSE.txt"
}
],
"dependencies": {
"async": "^1.4.2",
"cassandra-driver": "^3.0.1",
"winston": "^1.1.1"
},
"devDependencies": {
"async": "^1.4.2",
"mocha": "^2.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/jorgebay/winston-cassandra.git"
},
"bugs": {
"url": "https://github.com/jorgebay/winston-cassandra/issues"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha test -R spec -t 5000"
}
}