-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 928 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
{
"name": "loglog",
"version": "0.3.4",
"description": "Hierarchical logging with a clean API for node and the browser",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -b -R spec test/"
},
"repository": {
"type": "git",
"url": "https://github.com/goodybag/loglog.git"
},
"keywords": [
"logging",
"browser",
"hierarchical"
],
"author": "John Fawcett",
"license": "ISC",
"bugs": {
"url": "https://github.com/goodybag/loglog/issues"
},
"homepage": "https://github.com/goodybag/loglog",
"dependencies": {
"cli-color": "^0.3.2",
"lodash": "^3.10.1",
"loglog-dev-tools": "^1.0.7"
},
"devDependencies": {
"browserify": "^6.2.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-shell": "^1.1.1",
"mocha": "^1.21.4"
}
}