-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 849 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 849 Bytes
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
{
"name": "@topcli/lstree",
"version": "1.1.0",
"description": "System Tree Printer",
"type": "module",
"exports": "./index.js",
"bin": {
"lstree": "./bin/index.js"
},
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "node --test ./test/ut/test.js",
"coverage": "c8 -r html npm test",
"lint": "eslint ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"keywords": [
"tree",
"stdout",
"terminal",
"lstree"
],
"files": [
"index.js",
"index.d.ts",
"bin/index.js"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"devDependencies": {
"@openally/config.eslint": "^2.2.0",
"c8": "^11.0.0",
"pkg-ok": "^3.0.0"
},
"engines": {
"node": ">=24"
}
}