UNPKG

tsoid

Version:

Typed functional library to deal with async operations.

59 lines (58 loc) 1.33 kB
{ "name": "tsoid", "version": "1.1.2", "main": "dist/src/index.js", "module": "dist/index.es.js", "files": [ "dist" ], "keywords": [ "library", "typescript", "functional", "declarative", "promises", "async", "asynchronous" ], "types": "dist/index.d.ts", "author": "Gustavo Santos <gustavofsantos@outlook.com>", "license": "MIT", "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.ts": [ "eslint --fix" ] }, "scripts": { "build": "tsc", "check": "tsc --noEmit", "test": "CI=true jest", "test-watch": "jest --watch", "test-coverage": "jest --coverage", "publish": "npm run build" }, "devDependencies": { "@babel/core": "^7.8.3", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", "@types/jest": "^24.9.0", "@typescript-eslint/eslint-plugin": "^2.18.0", "@typescript-eslint/parser": "^2.18.0", "babel-jest": "^24.9.0", "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.0.0", "eslint-plugin-import": "^2.20.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-sonarjs": "^0.5.0", "husky": "^4.2.1", "jest": "^24.9.0", "lint-staged": "^10.0.7", "prettier": "^1.19.1", "typescript": "^3.7.4" } }