Remove component.json and add index.js.

Former-commit-id: 16718a8ee6c4b6c834fe96feb58404311b82e3a0
This commit is contained in:
John-David Dalton
2012-09-29 15:31:47 -07:00
parent d993a62263
commit c50bb3a5a9
2 changed files with 1 additions and 30 deletions

View File

@@ -1,30 +0,0 @@
{
"name": "lodash",
"version": "0.7.0",
"description": "A drop-in replacement for Underscore.js delivering performance, bug fixes, and additional features.",
"homepage": "http://lodash.com",
"main": [
"./lodash.js",
"./lodash.min.js"
],
"keywords": [
"browser",
"client",
"functional",
"performance",
"server",
"speed",
"util"
],
"licenses": [
{
"type": "MIT",
"url": "http://lodash.com/license"
}
],
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
"web": "http://allyoucanleet.com/"
}
}

1
index.js Executable file
View File

@@ -0,0 +1 @@
module.exports = require('./lodash');