wallet-core/node_modules/widest-line/package.json

55 lines
945 B
JSON
Raw Normal View History

2017-05-28 00:38:50 +02:00
{
"name": "widest-line",
2017-12-27 19:33:54 +01:00
"version": "2.0.0",
2017-05-28 00:38:50 +02:00
"description": "Get the visual width of the widest line in a string - the number of columns required to display it",
"license": "MIT",
"repository": "sindresorhus/widest-line",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
2017-12-27 19:33:54 +01:00
"node": ">=4"
2017-05-28 00:38:50 +02:00
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"string",
"str",
"character",
"char",
"unicode",
"width",
"visual",
"column",
"columns",
"fullwidth",
"full-width",
"full",
"ansi",
"escape",
"codes",
"cli",
"command-line",
"terminal",
"console",
"cjk",
"chinese",
"japanese",
"korean",
"fixed-width"
],
"dependencies": {
2017-12-27 19:33:54 +01:00
"string-width": "^2.1.1"
2017-05-28 00:38:50 +02:00
},
"devDependencies": {
"ava": "*",
"xo": "*"
}
}