-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.32 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "listr-cli",
"version": "0.3.0",
"description": "Command-line task lists made pretty.",
"keywords": [
"cli",
"cli-app",
"listr",
"listr2",
"command line",
"task",
"test"
],
"license": "MIT",
"repository": "tommy-mitchell/listr-cli",
"author": {
"name": "Tommy Mitchell",
"url": "https://tommymitchell.io"
},
"type": "module",
"bin": {
"listr": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": "^18.18 || ^20.8 || ^21"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json && execify --all",
"lint": "xo",
"test": "c8 ava"
},
"ava": {
"files": [
"test/**/*.ts"
],
"extensions": {
"ts": "module"
},
"environmentVariables": {
"concurrency": "5"
},
"nodeArguments": [
"--import=tsimp"
]
},
"dependencies": {
"ci-info": "^3.8.0",
"execa": "^7.1.1",
"line-transform-stream": "^1.0.1",
"listr2": "^6.6.0",
"meow": "^13.1.0"
},
"devDependencies": {
"@shopify/semaphore": "^3.0.2",
"@tommy-mitchell/tsconfig": "^2.1.0",
"@types/node": "^18.18",
"ava": "^6.1.0",
"c8": "^9.1.0",
"cross-env": "^7.0.3",
"execify-cli": "beta",
"get-bin-path": "^11.0.0",
"is-executable": "^2.0.1",
"strip-ansi": "^7.1.0",
"tsimp": "^2.0.10",
"type-fest": "^4.10.0",
"typescript": "~5.3.3",
"xo": "^0.56.0"
}
}