UNPKG

stdio

Version:

Standard input/output manager for Node.js

63 lines (62 loc) 1.76 kB
{ "name": "stdio", "version": "2.1.3", "description": "Standard input/output manager for Node.js", "files": [ "dist/**/*" ], "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "codecov": "codecov -t $CODECOV_TOKEN", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "lint": "eslint --config .eslintrc.json --fix src/**/*.ts test/**/*.ts", "test": "jest --config jestconfig.json", "prepublishOnly": "npm test && npm run lint", "prepare": "npm run build", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/sgmonda/stdio.git" }, "keywords": [ "standard", "input", "console", "output", "terminal", "system", "arguments", "cli", "repl" ], "author": "Sergio Garcia Mondaray <sgmonda@gmail.com> (http://sgmonda.com)", "license": "MIT", "bugs": { "url": "https://github.com/sgmonda/stdio/issues" }, "homepage": "https://github.com/sgmonda/stdio#readme", "devDependencies": { "@types/jest": "^24.0.15", "@types/node": "^12.6.8", "@typescript-eslint/eslint-plugin": "^2.7.0", "@typescript-eslint/parser": "^2.7.0", "codecov": "^3.6.5", "eslint": "^6.6.0", "eslint-config-prettier": "^6.5.0", "eslint-config-typescript": "^3.0.0", "eslint-plugin-filenames": "^1.3.2", "eslint-plugin-jest": "^23.0.4", "eslint-plugin-prettier": "^3.1.1", "eslint-plugin-sonarjs": "^0.5.0", "jest": "^24.8.0", "mock-stdin": "^1.0.0", "prettier": "^1.18.2", "ts-jest": "^24.0.2", "typescript": "^3.7.2" } }