UNPKG

data.task.ts

Version:

Personal functional Task typeclass implementation

56 lines (55 loc) 1.51 kB
{ "name": "data.task.ts", "version": "1.7.0", "description": "Personal functional Task typeclass implementation", "main": "./build/index.js", "types": "./build/index.d.ts", "files": [ "build/**/*" ], "scripts": { "lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix", "build": "rimraf ./build && tsc --project tsconfig.build.json && cp package*.json ./build", "test": "jest --detectOpenHandles --runInBand --forceExit", "test:watch": "npm test -- --watchAll --runInBand", "coverage": "npm test -- --coverage --no-cache --detectOpenHandles", "coverage:watch": "npm run coverage -- --forceExit --watch", "prepublishOnly": "npm run build", "release": "np" }, "repository": { "type": "git", "url": "git+https://github.com/eljou/data.task.ts.git" }, "keywords": [ "functional", "fp", "task", "async", "promises", "typeclass", "monad" ], "author": "Ernesto Fuentes (eljou)", "license": "MIT", "bugs": { "url": "https://github.com/eljou/data.task.ts/issues" }, "homepage": "https://github.com/eljou/data.task.ts#readme", "dependencies": { "monet": "^0.9.2" }, "devDependencies": { "@types/jest": "^28.1.1", "eslint": "^8.20.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^28.1.3", "np": "^7.6.2", "prettier": "^2.7.1", "rimraf": "^3.0.2", "ts-jest": "^28.0.8", "ts-node": "^10.9.1", "typescript": "^4.9.3" } }