-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
121 lines (121 loc) · 3.44 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@caporal/core",
"version": "3.1.5",
"description": "A full-featured framework for building command line applications (cli) with node.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.ts,.tsx --fix .",
"build": "rimraf dist && pnpm build:js",
"build:ci": "npm run build:all",
"build:all": "run-p -n build:js docs:build",
"refresh-markdown": "./scripts/gen-contributors.js && ./scripts/gen-dependents.js && ./scripts/gen-readme.js",
"build:typedocs:watch": "nodemon --watch src --exec 'typedoc src'",
"build:typedocs": "typedoc --plugin typedoc-plugin-markdown src/index.ts",
"docs:dev": "pnpm build:typedocs && vuepress dev docs",
"docs:build": "vuepress build docs",
"build:js": "tsup",
"build:watch": "tsup --watch",
"test": "vitest run src",
"test:dist": "vitest dist-tests",
"test:watch": "vitest src",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"semantic-release": "semantic-release"
},
"files": [
"dist/**/*.{ts,js,mts,mjs,map}"
],
"engines": {
"node": ">= 16"
},
"homepage": "https://github.com/mattallty/Caporal.js",
"keywords": [
"cli",
"command",
"commander",
"clap",
"cli-app",
"minimist",
"cli-table",
"command line apps",
"option",
"parser",
"argument",
"flag",
"args",
"argv"
],
"author": "Matthias ETIENNE <[email protected]> (https://github.com/mattallty)",
"repository": "mattallty/Caporal.js",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^20.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node16": "^16.1.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vuepress/client": "2.0.0-beta.66",
"cheerio": "1.0.0-rc.12",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"json": "^11.0.0",
"markdown-table": "^3.0.3",
"node-fetch": "^3.3.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"semantic-release": "^21.1.1",
"strip-ansi": "^7.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typedoc": "^0.25.0",
"typedoc-plugin-markdown": "3.16.0",
"typescript": "~5.1.6",
"vitest": "^0.34.3",
"vue": "^3.3.4",
"vuepress": "2.0.0-beta.66",
"vuepress-plugin-typedoc": "^0.13.0",
"wrangler": "^3.6.0"
},
"dependencies": {
"@types/glob": "^8.1.0",
"@types/lodash": "^4.14.197",
"@types/node": "20.5.6",
"@types/tabtab": "^3.0.2",
"@types/wrap-ansi": "^8.0.1",
"chalk": "4.1.2",
"glob": "^10.3.3",
"lodash": "^4.17.21",
"table": "^6.8.1",
"tabtab": "^3.0.2",
"winston": "^3.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}