-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1014 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
45
{
"name": "@topcli/text-align",
"version": "1.0.0",
"description": "A wide-character aware text alignment function for use in terminals / on the console.",
"type": "module",
"exports": "./index.js",
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "node --test test/",
"coverage": "c8 -r html npm test",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopCli/text-align.git"
},
"keywords": [
"align",
"left",
"right",
"center",
"text",
"pad"
],
"files": [
"index.js"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TopCli/text-align/issues"
},
"homepage": "https://github.com/TopCli/text-align#readme",
"dependencies": {
"@topcli/wcwidth": "^1.0.1"
},
"devDependencies": {
"@openally/config.eslint": "^1.1.0",
"c8": "^10.1.3",
"pkg-ok": "^3.0.0"
},
"engines": {
"node": ">=14"
}
}