diff --git a/css-value/reworkcss-value.js b/css-value/index.js similarity index 98% rename from css-value/reworkcss-value.js rename to css-value/index.js index 3aca66f11..d3af489b9 100644 --- a/css-value/reworkcss-value.js +++ b/css-value/index.js @@ -1,5 +1,5 @@ -module.exports.parse = parse; +module.exports = parse; function parse(str) { return new Parser(str).parse(); diff --git a/css-value/package.json b/css-value/package.json index 31ec2a76e..086525a5a 100644 --- a/css-value/package.json +++ b/css-value/package.json @@ -8,5 +8,10 @@ "type": "git", "url": "git://github.com/visionmedia/css-value.git" }, - "main": "reworkcss-value.js" + "dependencies": {}, + "devDependencies": { + "mocha": "~1.9.0", + "should": "~1.2.2" + }, + "main": "index" }