-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "smartwrap",
"version": "2.0.2",
"description": "Textwrap for javascript/nodejs. Correctly handles wide characters (宽字符) and emojis (😃). Wraps strings with option to break on words.",
"main": "src/main.js",
"engines": {
"node": ">=6"
},
"bin": {
"smartwrap": "src/terminal-adapter.js"
},
"scripts": {
"test": "./node_modules/.bin/grunt t",
"test-display": "./node_modules/.bin/grunt test-display",
"lint": "./node_modules/.bin/eslint src/*",
"lint-fix": "./node_modules/.bin/eslint src/* --fix"
},
"repository": {
"type": "git",
"url": "https://www.github.com/tecfu/smartwrap.git"
},
"keywords": [
"wordwrap"
],
"author": "tecfu",
"license": "MIT",
"dependencies": {
"array.prototype.flat": "^1.2.3",
"breakword": "^1.0.5",
"grapheme-splitter": "^1.0.4",
"strip-ansi": "^6.0.0",
"wcwidth": "^1.0.1",
"yargs": "^15.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-mocha-test": "^0.13.3",
"husky": "^4.2.3",
"mocha": "^5.2.0"
}
}