UNPKG

message-await

Version:

A utility to print message with an async success or failure in node.js

55 lines (54 loc) 1.71 kB
{ "name": "message-await", "version": "1.1.0", "description": "A utility to print message with an async success or failure in node.js", "main": "dist/src/index.js", "scripts": { "clean": "rimraf dist", "build": "tsc", "build:watch": "tsc --watch", "lint": "eslint . --ext .ts,.d.ts,.js", "lint:fix": "eslint . --ext .ts,.d.ts,.js --fix", "verify-release": "concurrently npm:lint npm:build", "prepublishOnly": "npm run clean && npm run verify-release" }, "keywords": [ "async", "node", "await", "print", "message" ], "author": "Giles Roadnight", "license": "ISC", "dependencies": { "cli-cursor": "^3.1.0", "log-symbols": "^4.1.0" }, "devDependencies": { "@types/node": "^14.17.9", "@typescript-eslint/eslint-plugin": "^4.29.0", "@typescript-eslint/parser": "^4.29.0", "chalk": "^4.1.2", "concurrently": "^6.2.0", "eslint": "^7.32.0", "eslint-config-prettier": "^7.2.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.23.4", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.4.0", "eslint-plugin-promise": "^4.3.1", "prettier": "^2.3.2", "rimraf": "^3.0.2", "typescript": "^4.3.5" }, "types": "./dist/src/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/Roaders/message-await.git" }, "bugs": { "url": "https://github.com/Roaders/message-await/issues" }, "homepage": "https://github.com/Roaders/message-await#readme" }