From d2311139c7336a1ac1fb0b2b4b00018b01e2e44c Mon Sep 17 00:00:00 2001 From: James Talmage Date: Wed, 4 May 2016 15:33:24 -0400 Subject: [PATCH] Add files entry to package.json. Removes unnecessary files from the deployed package. Deploying unnecessary files impacts the performance of `npm install` for everyone. See: https://github.com/insin/package-config-checker --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 5e6d9e9..a5d9a01 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,9 @@ "node": ">=0.10.0" }, "main": "./jsonpointer", + "files": [ + "jsonpointer.js" + ], "scripts": { "test": "standard && node test.js" },