Add component.json. [closes #58]

Former-commit-id: a7edbb3ee80687f3c74fdb2ae37cad553e009766
This commit is contained in:
John-David Dalton
2013-04-28 00:18:37 -07:00
parent e5d34890a9
commit 1af5517da0
4 changed files with 23 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "lodash",
"version": "1.2.0",
"main": "./lodash.js",
"main": "./dist/lodash.compat.js",
"ignore": [
".*",
"*.custom.*",

20
component.json Normal file
View File

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

View File

@@ -1 +1 @@
module.exports = require('./lodash');
module.exports = require('./dist/lodash.compat.js');

View File

@@ -34,6 +34,6 @@
"rhino"
],
"jam": {
"main": "./lodash.js"
"main": "./dist/lodash.compat.js"
}
}