This repository was archived by the owner on Jul 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "debug-plus",
"version": "1.2.2",
"description": "A drop-in replacement for the `debug` module that adds semantic sugar for `console`-style logging of various types of messages such as `log`, `warn`, `error`, or even `dir`.",
"main": "index.js",
"scripts": {
"test": "DEBUG=test* mocha --recursive --compilers coffee:coffee-script/register",
"test-watch": "DEBUG=test* mocha --watch --recursive --compilers coffee:coffee-script/register"
},
"repository": {
"type": "git",
"url": "https://github.com/ElliotChong/debug-plus.git"
},
"keywords": [
"debug",
"debugging",
"debugger",
"logging",
"console"
],
"author": "Elliot Chong <code@elliotjameschong.com>",
"contributors": [
"TJ Holowaychuk <tj@vision-media.ca>",
"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ElliotChong/debug-plus/issues"
},
"homepage": "https://github.com/ElliotChong/debug-plus",
"dependencies": {
"config": "^1.21.0",
"debug": "^2.2.0",
"lodash": "^4.15.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.8.0",
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.12.0",
"grunt-conventional-changelog": "^1.1.0",
"grunt-notify": "^0.4.1",
"jit-grunt": "^0.9.0",
"load-grunt-config": "^0.16.0",
"mocha": "^3.0.2"
}
}