UNPKG

decline-ts

Version:

Composable command-line parser for TypeScript - a (partial) porting of Scala decline using fp-ts

71 lines (70 loc) 2.09 kB
{ "name": "decline-ts", "version": "0.10.0", "description": "Composable command-line parser for TypeScript - a (partial) porting of Scala decline using fp-ts", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "repository": "https://github.com/Gurimarukin/decline-ts.git", "author": "Gurimarukin", "license": "MIT", "scripts": { "clean": "rimraf lib/*", "prettier": "prettier --check \"./{src,test}/**/*.ts\"", "prettier-fix": "prettier --write \"./{src,test}/**/*.ts\"", "import-sort": "import-sort --list-different \"./{src,test}/**/*.ts\"", "import-sort-fix": "import-sort --write \"./{src,test}/**/*.ts\"", "lint": "eslint --cache --max-warnings 0 --ext .ts src test", "lint-fix": "eslint --fix --cache --max-warnings 0 --ext .ts src test", "jest": "jest", "jest-coverage": "jest --ci --coverage", "test": "yarn run prettier && yarn run import-sort && yarn run lint && yarn run jest", "build": "yarn run clean && tsc -p ./tsconfig.build.json", "prepublish": "yarn run build" }, "peerDependencies": { "fp-ts": "^2.9.5", "io-ts": "^2.2.16" }, "devDependencies": { "@type-config/strict": "^1.1.1", "@types/jest": "^26.0.20", "@typescript-eslint/eslint-plugin": "^4.19.0", "@typescript-eslint/parser": "^4.19.0", "eslint": "^7.23.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-fp-ts": "^0.2.1", "eslint-plugin-functional": "^3.2.1", "eslint-plugin-prettier": "^3.3.1", "import-sort-cli": "^6.0.0", "import-sort-parser-typescript": "^6.0.0", "import-sort-style-module": "^6.0.0", "jest": "^26.6.3", "prettier": "^2.2.1", "rimraf": "^3.0.2", "ts-jest": "^26.4.4", "typescript": "^4.1.3" }, "tags": [ "typescript", "functional-programming", "cli", "decline", "fp-ts" ], "keywords": [ "typescript", "functional-programming", "cli", "decline", "fp-ts" ], "importSort": { ".js, .ts": { "style": "module", "parser": "typescript" } } }