-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"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/test.js",
"coverage": "c8 -r html npm test",
"lint": "eslint ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"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 <[email protected]>",
"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": "^2.2.0",
"c8": "^11.0.0",
"pkg-ok": "^4.0.0"
},
"engines": {
"node": ">=14"
}
}