From d342daac1c339aef7033e163b004fd681c68aaf1 Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 6 Jun 2017 10:26:05 -0700 Subject: [PATCH] move main to index.js --- lib/lru-cache.js => index.js | 0 package.json | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename lib/lru-cache.js => index.js (100%) diff --git a/lib/lru-cache.js b/index.js similarity index 100% rename from lib/lru-cache.js rename to index.js diff --git a/package.json b/package.json index 68b13a7a..a869edd1 100644 --- a/package.json +++ b/package.json @@ -10,9 +10,9 @@ ], "scripts": { "test": "tap test --100", - "posttest": "standard test/*.js lib/*.js" + "posttest": "standard test/*.js index.js" }, - "main": "lib/lru-cache.js", + "main": "index.js", "repository": "git://github.com/isaacs/node-lru-cache.git", "devDependencies": { "standard": "^5.4.1", @@ -24,6 +24,6 @@ "yallist": "^2.0.0" }, "files": [ - "lib/lru-cache.js" + "index.js" ] }