CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json42 linesDownload Raw Back to commander
1{2  "name": "commander",3  "version": "4.1.1",4  "description": "the complete solution for node.js command-line programs",5  "keywords": [6    "commander",7    "command",8    "option",9    "parser"10  ],11  "author": "TJ Holowaychuk <tj@vision-media.ca>",12  "license": "MIT",13  "repository": {14    "type": "git",15    "url": "https://github.com/tj/commander.js.git"16  },17  "scripts": {18    "lint": "eslint index.js \"tests/**/*.js\"",19    "test": "jest && npm run test-typings",20    "test-typings": "tsc -p tsconfig.json"21  },22  "main": "index",23  "files": [24    "index.js",25    "typings/index.d.ts"26  ],27  "dependencies": {},28  "devDependencies": {29    "@types/jest": "^24.0.23",30    "@types/node": "^12.12.11",31    "eslint": "^6.7.0",32    "eslint-plugin-jest": "^22.21.0",33    "jest": "^24.8.0",34    "standard": "^14.3.1",35    "typescript": "^3.7.2"36  },37  "typings": "typings/index.d.ts",38  "engines": {39    "node": ">= 6"40  }41}42