-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.6 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
{
"name": "execli",
"version": "5.0.1",
"description": "Generate task-oriented CLIs declaratively",
"keywords": [
"cli",
"task",
"exec",
"listr",
"listr2",
"yargs"
],
"bugs": {
"url": "https://github.com/activeviam/execli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/activeviam/execli"
},
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": "lib/bin.js",
"files": [
"lib",
"!lib/__test_resources__"
],
"scripts": {
"build": "tsc --build",
"prettier": "prettier --ignore-path .gitignore .",
"pretest": "tsc --build tsconfig.test.json --incremental",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"xo": "xo"
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.0",
"@types/yargs": "^17.0.22",
"@vercel/ncc": "^0.36.1",
"execa": "^7.0.0",
"is-interactive": "^2.0.0",
"listr2": "^5.0.7",
"yargs": "^17.7.1"
},
"devDependencies": {
"@jest/globals": "^29.4.3",
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.24",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"cross-env": "^7.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"jest": "^29.4.3",
"pkg-dir": "^7.0.0",
"prettier": "^2.8.4",
"prettier-plugin-packagejson": "^2.4.3",
"tempy": "^3.0.0",
"typescript": "^4.9.5",
"xo": "^0.53.1",
"yarn-deduplicate": "^6.0.1"
},
"engines": {
"node": ">=18.12.1"
}
}