diff --git a/.gitignore b/.gitignore index 54e7fab45..5562ba482 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ .DS_Store *.custom.* -node_modules/ -vendor/closure-compiler/ -vendor/uglifyjs/ +node_modules +vendor/closure-compiler +vendor/uglifyjs diff --git a/.jamignore b/.jamignore index 1b3c6925b..71e4eebeb 100644 --- a/.jamignore +++ b/.jamignore @@ -1,12 +1,13 @@ .* *.custom.* +*.d.ts *.md *.txt build.js index.js -build/ -doc/ -node_modules/ -perf/ -test/ -vendor/ +build +doc +node_modules +perf +test +vendor diff --git a/.npmignore b/.npmignore index 9840611f3..5d03681c9 100644 --- a/.npmignore +++ b/.npmignore @@ -1,7 +1,7 @@ .* *.custom.* *.d.ts -CONTRIBUTING.md +*.md doc node_modules perf diff --git a/bower.json b/bower.json new file mode 100644 index 000000000..e12c686d0 --- /dev/null +++ b/bower.json @@ -0,0 +1,20 @@ +{ + "name": "lodash", + "version": "1.1.1", + "main": "./lodash.js", + "ignore": [ + ".*", + "*.custom.*", + "*.d.ts", + "*.md", + "*.txt", + "build.js", + "index.js", + "build", + "doc", + "node_modules", + "perf", + "test", + "vendor" + ] +} diff --git a/package.json b/package.json index fbe2c8be8..8254ed7af 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "A low-level utility library delivering consistency, customization, performance, and extra features.", "homepage": "http://lodash.com", "license": "MIT", - "main": "./dist/lodash", + "main": "./dist/lodash.js", "keywords": [ "browser", "client",