forked from krakenjs/pine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 922 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 922 Bytes
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": "pine",
"version": "1.1.1",
"description": "A logging utility.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc index.js lib/*.js",
"dryrun": "(TARBALL=`npm pack` ; tar ztvf $TARBALL ; rm -f $TARBALL)"
},
"keywords": [
"logging"
],
"repository": {
"type": "git",
"url": "git@github.com:krakenjs/pine.git"
},
"author": "Erik Toth <ertoth@paypal.com>",
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"devDependencies": {
"freshy": "0.0.2",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"tape": "^3.0.0",
"winston-mongodb": "^1.4.0"
},
"dependencies": {
"caller": "^1.0.0",
"lodash-node": "^2.4.1",
"winston": "^2.2.0"
}
}