UNPKG

commanding

Version:

A simple yet practical command-Line application framework, written in TypeScript.

54 lines (53 loc) 1.28 kB
{ "name": "commanding", "version": "1.1.1", "description": "A simple yet practical command-Line application framework, written in TypeScript.", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist/", "package.json", "README.md", "LICENSE" ], "scripts": { "clean": "rimraf ./dist/ ./tsconfig.build.tsbuildinfo", "compile": "tsc -p tsconfig.json", "build": "npm run clean && npm run compile", "test": "npx jest", "test:cov": "npx jest --coverage" }, "repository": { "type": "git", "url": "git+https://github.com/AaronJan/Commanding.git" }, "keywords": [ "CLI", "commandline", "Command Line", "Command-Line" ], "author": { "name": "AaronJan", "url": "https://github.com/AaronJan" }, "license": "Apache-2.0", "bugs": { "url": "https://github.com/AaronJan/Commanding/issues" }, "homepage": "https://github.com/AaronJan/Commanding#readme", "devDependencies": { "@types/jest": "^24.0.18", "@types/lodash": "^4.14.138", "@types/node": "^11.13.20", "jest": "^24.9.0", "rimraf": "^3.0.0", "ts-jest": "^24.0.2", "ts-node": "^8.3.0", "typescript": "^3.6.2" }, "dependencies": { "chalk": "2.*", "lodash": "^4.17.15" } }