-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 KB
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
56
57
{
"name": "solid-logger-js",
"description": "solid-logger-js is a project that will create logs in a consistant way between your projects. There are a ton of options when implementing logging in your application. The solid-logger series implements the same tasks across programming languages. The idea is that logging in node projects is identical to php, ruby, etc.",
"main": "./lib/solid-logger",
"author": "Travis McHattie",
"contributors": [
{
"name": "Travis McHattie"
},
{
"name": "Peter Ajtai"
}
],
"version": "1.3.2",
"repository": {
"type": "git",
"url": "https://github.com/travism/solid-logger-js.git"
},
"bugs": {
"url": "https://github.com/travism/solid-logger-js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/travism/solid-logger-js/blob/master/LICENSE"
}
],
"dependencies": {
"bluebird": "^2.9.34",
"chalk": "^0.5.1",
"lodash": "^2.4.1",
"loggly": "^1.0.5",
"superagent": "^1.6.1"
},
"devDependencies": {
"chai": "~1.8.1",
"express": "^4.13.3",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-shell": "~0.6.1",
"matchdep": "~0.3.0",
"mocha": "~1.13.0",
"raw-body": "^2.1.5",
"sinon": "^1.17.2"
},
"jam": {
"main": "lib/solid-logger.js",
"include": [
"lib/solid-logger.js",
"README.md",
"LICENSE"
]
},
"scripts": {
"test": "mocha test --recursive --reporter spec"
}
}