forked from ruyadorno/ntl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.31 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ntl",
"version": "5.1.0",
"description": "Interactive cli tool to list and run package scripts",
"repository": "ruyadorno/ntl",
"author": {
"name": "Ruy Adorno",
"twitter": "ruyadorno",
"url": "http://ruyadorno.com"
},
"contributors": [
{
"name": "Michael Kühnel",
"twitter": "mkuehnel",
"url": "https://michael-kuehnel.de"
},
{
"name": "Igor «InoY» Zviagintsev",
"twitter": "inoyakaigor",
"url": "https://inoy.dev"
}
],
"bin": {
"nt": "rerun.js",
"ntl": "cli.js",
"nodetask": "rerun.js",
"nodetasklist": "cli.js",
"npm-tasklist": "cli.js"
},
"man": "./man/man1/ntl.1",
"engines": {
"node": ">=20"
},
"scripts": {
"generate-manual": "marked-man --version $npm_package_version --manual \"Node Task List\" README.md > man/man1/ntl.1",
"readme-toc": "markdown-toc --no-firsth1 README.md | pbcopy",
"hello": "echo \"Hello\"",
"bomdia": "echo \"Bom dia\"",
"pretest": "eslint cli.js rerun.js test",
"prepublish": "npm test",
"test": "cross-env NTL_NO_RERUN_CACHE=1 tap",
"start": "node cli.js"
},
"files": [
"man",
"cli.js",
"rerun.js"
],
"keywords": [
"npm",
"task",
"scripts",
"list",
"interactive",
"inquirer",
"unix",
"terminal",
"workflow",
"cli-app",
"cli",
"ntl",
"ipt",
"runner",
"menu"
],
"dependencies": {
"esmock": "^2.6.5",
"ipt": "^3.2.0",
"lru-cache-fs": "^2.0.1",
"read-pkg": "^9.0.1",
"simple-output": "^3.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"markdown-toc": "^1.2.0",
"marked": "^12.0.2",
"marked-man": "^2.1.0",
"minipass": "^7.1.1",
"prettier": "^3.2.5",
"tap": "^19.0.0"
},
"tap": {
"exclude": [
"test/integration/helpers.js",
"test/unit/helpers.js"
]
},
"ntl": {
"descriptions": {
"generate-manual": "Generate man page from README, needs manual cleanup",
"readme-toc": "Generates a TOC and put it on current clipboard",
"hello": "Prints a hello message :)",
"test": "Run all tests"
}
},
"license": "MIT",
"type": "module"
}