debug/package.json
Nathan Rajlich e289c89b21 package: re-add the "component" section
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.
2014-04-14 18:00:26 -07:00

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"
}
}
}