From 6e9fdae7931f798593a80977afce7f7bb8a834b6 Mon Sep 17 00:00:00 2001 From: Bruno Bonamin Date: Mon, 16 Mar 2015 13:28:18 +0000 Subject: [PATCH] Specify license on package.json Hey there, We're using an automated tool called License Finder (https://github.com/pivotal/LicenseFinder) and your node module coms up as "Unknown". By adding the license to package.json you would help immensely users of this and other automated tools to figure out whether a module can be used inside another project. Thanks! --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 322b0fa..12bec89 100644 --- a/package.json +++ b/package.json @@ -16,5 +16,6 @@ "scripts": { "ms/index.js": "index.js" } - } + }, + "license": "MIT" }