UNPKG

@gmjs/cli-wrapper

Version:
76 lines (75 loc) 1.99 kB
{ "name": "@gmjs/cli-wrapper", "version": "0.0.2", "description": "cli-wrapper", "author": { "name": "Goran Mržljak", "email": "goran.mrzljak@gmail.com", "url": "https://mrzli.com" }, "license": "MIT", "keywords": [ "cli", "command-line", "argument-parser", "option-parser", "input-validation", "cli-tool", "cli-library", "cli-utility", "command-line-tool", "command-line-parser", "command-line-utility", "cli-options", "cli-validation", "nodejs-cli" ], "repository": { "type": "git", "url": "https://github.com/mrzli/cli-wrapper" }, "homepage": "https://github.com/mrzli/cli-wrapper", "main": "dist/index.js", "files": [ "dist" ], "scripts": { "start:dev": "ts-node src/index.ts", "lint": "eslint --fix . && prettier --write .", "lint:nofix": "eslint . && prettier .", "test-only": "jest", "test": "npm run lint && npm run test-only", "build-only": "shx rm -rf ./dist && tsc --project tsconfig.lib.json", "build": "npm run test && npm run build-only", "pub-only": "npm publish --access public", "pub": "npm run build && npm run pub-only" }, "dependencies": { "tslib": "^2.5.0" }, "devDependencies": { "@gmjs/eslint-config": "^0.0.8", "@gmjs/prettier-config": "^1.0.2", "@gmjs/tsconfig": "^1.0.0", "@jest/globals": "^29.5.0", "@types/eslint": "^8.37.0", "@typescript-eslint/eslint-plugin": "^5.59.1", "@typescript-eslint/parser": "^5.59.1", "eslint": "^8.39.0", "eslint-config-prettier": "^8.8.0", "eslint-import-resolver-typescript": "^3.5.5", "eslint-plugin-import": "^2.27.5", "eslint-plugin-n": "^15.7.0", "eslint-plugin-unicorn": "^46.0.0", "jest": "^29.5.0", "prettier": "^2.8.8", "shx": "^0.3.4", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "^5.0.4" }, "engines": { "node": ">=16.0.0" }, "prettier": "@gmjs/prettier-config" }