-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "yargs-command-wrapper",
"version": "1.0.7-1",
"description": "enables the parsing of commands and subcommands into a unified set of types",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "npx eslint .",
"test": "./node_modules/.bin/vitest",
"coverage": "./node_modules/.bin/vitest run --coverage",
"build": "./node_modules/.bin/tsc",
"prepublishOnly": "echo 'use scripts/publish.sh instead' && exit 1",
"clean": "rm -rf dist/"
},
"homepage": "https://github.com/nktknshn/yargs-command-wrapper",
"author": {
"name": "Nikita Kanashin",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-istanbul": "^0.31.4",
"eslint": "^8.57.0",
"expect-type": "^0.15.0",
"husky": "^8.0.3",
"typescript": "^5.5.4",
"vitest": "^0.31.4"
},
"dependencies": {
"@types/yargs": "^17.0.33",
"yargs": "^17.7.2"
},
"keywords": [
"yargs",
"argument",
"args",
"option",
"parser",
"parsing",
"cli",
"command",
"fp-ts",
"fp"
]
}