UNPKG

cli-argparser

Version:
76 lines (75 loc) 1.88 kB
{ "name": "cli-argparser", "version": "0.0.13", "description": "An command line argument parser", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/OuyangQianba/argparser" }, "author": "", "bugs": { "url": "https://github.com/OuyangQianba/argparser" }, "keywords": [ "arg-parser", "argument", "argument option", "GNU style argument" ], "files": [ "lib" ], "main": "lib/index.js", "typings": "lib/index.d.ts", "scripts": { "clean": "rimraf lib", "lint": "tslint --force --format verbose \"src/**/*.ts\"", "build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty", "test": "npm run build && mocha --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'", "test-one": "mocha --conpilers ts:ts-node/register ", "coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --compilers ts:ts-node/register --recursive 'test/**/*.test.ts'", "watch": "npm run build -- --watch", "watch:test": "npm run test -- --watch" }, "dependencies": { "cli-table": "^0.3.1", "debug": "^2.6.8", "global": "^4.3.2", "lexor": "^1.0.1", "split-string": "^3.0.2" }, "devDependencies": { "@types/chai": "^3.0.0", "@types/debug": "^0.0.29", "@types/mocha": "^2.0.0", "@types/node": "^7.0.0", "chai": "^3.0.0", "coveralls": "^2.0.0", "mocha": "^3.0.0", "nyc": "^10.0.0", "rimraf": "^2.0.0", "ts-node": "^3.0.4", "tslint": "^5.0.0", "typescript": "^2.0.0" }, "engines": { "node": ">=4.0.0" }, "nyc": { "include": [ "src/**/*.ts" ], "exclude": [ "lib" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [], "all": true } }