-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 977 Bytes
/
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": "@cto.af/linewrap-cli",
"version": "2.1.1",
"description": "Wrap lines using the Unicode Line Breaking algorithm from UAX #14",
"type": "module",
"bin": {
"linewrap": "bin/linewrap.js"
},
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"build": "npm run lint && npm run test && npm pack --dry-run"
},
"keywords": [
"uax14",
"word-wrap",
"wordwrap",
"linebreak",
"unicode",
"grapheme",
"cluster",
"cli",
"command-line"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": "cto-af/linewrap-cli",
"dependencies": {
"@cto.af/linewrap": "2.1.3",
"minus-h": "2.1.0"
},
"devDependencies": {
"@cto.af/eslint-config": "4.1.6",
"@types/node": "22.5.4",
"c8": "10.1.2",
"eslint": "9.10.0",
"eslint-plugin-mocha": "10.5.0",
"mocha": "10.7.3"
},
"packageManager": "pnpm@9.10.0",
"engines": {
"node": ">= 18"
}
}