mirror of
https://github.com/debug-js/debug.git
synced 2026-01-18 16:12:38 +00:00
Was inadvertently removed in a1cf28776451b58f322519ede9f9c0076cac1345. The "component" section is only used by legacy build systems at this point, but removing this broke our Cloudup build when we tried to update to v0.8.0 of `debug`. Adding it back for v0.8.1 so that we can upgrade again.
23 lines
572 B
JSON
23 lines
572 B
JSON
{
|
|
"name": "debug"
|
|
, "version": "0.8.0"
|
|
, "repository": { "type": "git", "url": "git://github.com/visionmedia/debug.git" }
|
|
, "description": "small debugging utility"
|
|
, "keywords": ["debug", "log", "debugger"]
|
|
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
|
|
, "dependencies": {}
|
|
, "devDependencies": { "mocha": "*" }
|
|
, "main": "lib/debug.js"
|
|
, "browser": "./debug.js"
|
|
, "engines": { "node": "*" }
|
|
, "files": [
|
|
"lib/debug.js",
|
|
"debug.js"
|
|
]
|
|
, "component": {
|
|
"scripts": {
|
|
"debug/index.js": "debug.js"
|
|
}
|
|
}
|
|
}
|