From bfcc97c55fca6ed5574825e6c8ab30d4ba0a1882 Mon Sep 17 00:00:00 2001 From: Matt Broadstone Date: Fri, 14 Sep 2018 15:44:32 -0400 Subject: [PATCH] chore(package): ensure we are only packaging what's needed --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 785943ef6..49638d58f 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,10 @@ "version": "3.1.4", "description": "Core MongoDB driver functionality, no bells and whistles and meant for integration not end applications", "main": "index.js", + "files": [ + "index.js", + "lib" + ], "scripts": { "test": "npm run lint && mongodb-test-runner -t 60000 test/tests", "coverage": "node_modules/.bin/nyc node test/runner.js -t functional -l && node_modules/.bin/nyc report --reporter=text-lcov | node_modules/.bin/coveralls",