From 39e06fb399c4c70a2b3335eedcc69a368a4f8384 Mon Sep 17 00:00:00 2001 From: Yuping Zuo Date: Tue, 19 Nov 2019 09:16:10 +0800 Subject: [PATCH] chore(package): add license to package.json LICENSE was present in git repo but not in package.json, causing NPM to display license: none on npmjs.com. Fixed. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ec02f3a..c8b4145 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "author": "changchang ", "version": "0.0.5", "description": "A simple tool to keep requests to be executed in order.", + "license": "MIT", "homepage": "https://github.com/changchang/seq-queue", "repository": { "type": "git", @@ -14,4 +15,4 @@ "mocha": ">=0.0.1", "should": ">=0.0.1" } -} \ No newline at end of file +}