-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Return license field to package.json
- Loading branch information
i.adamenko
committed
Dec 15, 2021
1 parent
fdd40d1
commit eb23a77
Showing
1 changed file
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
{"name":"cli-table","description":"Pretty unicode tables for the CLI","version":"0.3.11-dev","author":"Guillermo Rauch <[email protected]>","contributors":["Sonny Michaud <[email protected]> (http://github.com/sonnym)"],"repository":{"type":"git","url":"https://github.com/Automattic/cli-table.git"},"keywords":["cli","colors","table"],"dependencies":{"colors":"1.0.3"},"devDependencies":{"expresso":"~0.9","should":"~0.6"},"main":"lib","files":["lib"],"scripts":{"test":"make test"},"engines":{"node":">= 0.2.0"}} | ||
{ | ||
"name": "cli-table", | ||
"description": "Pretty unicode tables for the CLI", | ||
"version": "0.3.11-dev", | ||
"author": "Guillermo Rauch <[email protected]>", | ||
"contributors": ["Sonny Michaud <[email protected]> (http://github.com/sonnym)"], | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Automattic/cli-table.git" | ||
}, | ||
"keywords": ["cli", "colors", "table"], | ||
"dependencies": { | ||
"colors": "1.0.3" | ||
}, | ||
"devDependencies": { | ||
"expresso": "~0.9", | ||
"should": "~0.6" | ||
}, | ||
"main": "lib", | ||
"files": ["lib"], | ||
"scripts": { | ||
"test": "make test" | ||
}, | ||
"engines": { | ||
"node": ">= 0.2.0" | ||
} | ||
} |