-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.32 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "string-break",
"version": "1.2.0",
"description": "Break string into lines according to visual width.",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "elint lint \"**/*.js\" --fix",
"test:unit": "nyc --reporter=html --reporter=text mocha",
"test:coverage": "nyc report --reporter=lcovonly",
"beforecommit": "elint lint commit && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenwon/string-break.git"
},
"keywords": [
"break",
"string",
"fixed-width",
"chinese",
"console",
"terminal",
"command-line",
"cli",
"escape",
"ansi",
"full-width",
"fullwidth",
"columns",
"column",
"visual",
"width",
"unicode",
"char",
"character"
],
"author": {
"name": "keenwon",
"email": "semanwmj@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/keenwon/string-break/issues"
},
"homepage": "https://github.com/keenwon/string-break#readme",
"devDependencies": {
"chai": "^4.3.6",
"cli-clear": "^1.0.4",
"codecov": "^3.8.3",
"elint": "^3.0.0-beta.1",
"elint-preset-kw": "^3.0.0-beta.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"string-width": "^4.2.3"
}
}