maybe-monade
Version:
Maybe monad implementation in Typescript
57 lines (56 loc) • 1.19 kB
JSON
{
"name": "maybe-monade",
"version": "1.3.6",
"description": "Maybe monad implementation in Typescript",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bouraine/maybe-monade.git"
},
"keywords": [
"Maybe",
"MaybeCallback",
"Monad",
"Monade",
"Monada",
"Functional",
"Typescript",
"ts",
"Option",
"Optional",
"Some",
"None"
],
"author": "bouraine",
"license": "MIT",
"bugs": {
"url": "https://github.com/bouraine/maybe-monade/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"homepage": "https://github.com/bouraine/maybe-monade#readme",
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"ts-jest": "^23.1.3",
"typescript": "^3.5.3"
}
}