1 | {
|
2 | "name": "commander",
|
3 | "version": "7.0.0",
|
4 | "description": "the complete solution for node.js command-line programs",
|
5 | "keywords": [
|
6 | "commander",
|
7 | "command",
|
8 | "option",
|
9 | "parser",
|
10 | "cli",
|
11 | "argument",
|
12 | "args",
|
13 | "argv"
|
14 | ],
|
15 | "author": "TJ Holowaychuk <tj@vision-media.ca>",
|
16 | "license": "MIT",
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "https://github.com/tj/commander.js.git"
|
20 | },
|
21 | "scripts": {
|
22 | "lint": "eslint index.js \"tests/**/*.js\"",
|
23 | "typescript-lint": "eslint typings/*.ts",
|
24 | "test": "jest && npm run test-typings",
|
25 | "test-typings": "tsc -p tsconfig.json",
|
26 | "typescript-checkJS": "tsc --allowJS --checkJS index.js --noEmit",
|
27 | "test-all": "npm run test && npm run lint && npm run typescript-lint && npm run typescript-checkJS"
|
28 | },
|
29 | "main": "index",
|
30 | "files": [
|
31 | "index.js",
|
32 | "typings/index.d.ts"
|
33 | ],
|
34 | "dependencies": {},
|
35 | "devDependencies": {
|
36 | "@types/jest": "^26.0.20",
|
37 | "@types/node": "^14.14.20",
|
38 | "@typescript-eslint/eslint-plugin": "^4.12.0",
|
39 | "@typescript-eslint/parser": "^4.12.0",
|
40 | "eslint": "^7.17.0",
|
41 | "eslint-config-standard": "^16.0.2",
|
42 | "eslint-plugin-jest": "^24.1.3",
|
43 | "jest": "^26.6.3",
|
44 | "standard": "^16.0.3",
|
45 | "typescript": "^4.1.2"
|
46 | },
|
47 | "typings": "typings/index.d.ts",
|
48 | "jest": {
|
49 | "collectCoverage": true
|
50 | },
|
51 | "engines": {
|
52 | "node": ">= 10"
|
53 | }
|
54 | }
|