From d2f7a035b3a50057ea4acc22f7a75a909416bfe4 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 29 Sep 2012 17:20:51 -0700 Subject: [PATCH] Add test-build.js to `npm test`. Former-commit-id: c915ba8401c1c1b11aa69d155cebe2a0a81eb2d1 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e23dd4d2e..6b9dd29e9 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "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", + "main": "./lodash", "keywords": [ "browser", "client", @@ -43,10 +43,10 @@ "rhino" ], "jam": { - "main": "./lodash.min.js" + "main": "./lodash.js" }, "scripts": { "build": "node build", - "test": "node test/test" + "test": "node test/test;node test/test-build" } }