You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1003 B
56 lines
1003 B
{ |
|
"name": "string-width", |
|
"version": "1.0.2", |
|
"description": "Get the visual width of a string - the number of columns required to display it", |
|
"license": "MIT", |
|
"repository": "sindresorhus/string-width", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "sindresorhus.com" |
|
}, |
|
"engines": { |
|
"node": ">=0.10.0" |
|
}, |
|
"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": { |
|
"code-point-at": "^1.0.0", |
|
"is-fullwidth-code-point": "^1.0.0", |
|
"strip-ansi": "^3.0.0" |
|
}, |
|
"devDependencies": { |
|
"ava": "*", |
|
"xo": "*" |
|
} |
|
}
|
|
|