diff --git a/bower.json b/bower.json index 019749e67..50c5a7a93 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "lodash", "version": "1.2.0", - "main": "./lodash.js", + "main": "./dist/lodash.compat.js", "ignore": [ ".*", "*.custom.*", diff --git a/component.json b/component.json new file mode 100644 index 000000000..0bf08e00b --- /dev/null +++ b/component.json @@ -0,0 +1,20 @@ +{ + "name": "lodash", + "repo": "bestiejs/lodash", + "version": "1.2.0", + "description": "A low-level utility library delivering consistency, customization, performance, and extra features.", + "license": "MIT", + "scripts": [ + "./index.js", + "./dist/lodash.compat.js" + ], + "keywords": [ + "browser", + "client", + "functional", + "performance", + "server", + "speed", + "util" + ] +} diff --git a/index.js b/index.js index 5d063e21f..02f308a11 100755 --- a/index.js +++ b/index.js @@ -1 +1 @@ -module.exports = require('./lodash'); \ No newline at end of file +module.exports = require('./dist/lodash.compat.js'); \ No newline at end of file diff --git a/package.json b/package.json index 6675ee9f5..15edf8173 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,6 @@ "rhino" ], "jam": { - "main": "./lodash.js" + "main": "./dist/lodash.compat.js" } }