maybetyped
Version:
Well-typed functional Maybe monad
85 lines (84 loc) • 2.04 kB
JSON
{
"name": "maybetyped",
"version": "1.6.0",
"description": "Well-typed functional Maybe monad",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"build": "rm -rf dist && run-s rollup/cjs rollup/esm",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "tslint --config tslint.json --project . --format stylish",
"test": "jest",
"rollup/cjs": "rollup --format cjs --config rollup.config.js --file dist/index.js",
"rollup/esm": "rollup --format esm --config rollup.config.js --file dist/index.mjs",
"tsc": "tsc",
"prepush": "run-s lint test",
"release": "run-s build && npx semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andnp/MaybeTyped.git"
},
"keywords": [
"typescript",
"types",
"optional",
"maybe",
"monad",
"nullable"
],
"author": "Andy Patterson <andnpatterson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andnp/MaybeTyped/issues"
},
"homepage": "https://github.com/andnp/MaybeTyped#readme",
"files": [
"dist"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/tests/**/*.test.ts?(x)"
],
"moduleDirectories": [
"node_modules",
"./src"
],
"moduleFileExtensions": [
"js",
"ts"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"@types/jest": "~24.0.0",
"commitlint": "^8.0.0",
"husky": "^3.0.0",
"jest": "^24.0.0",
"npm-run-all": "^4.1.3",
"rollup": "^1.19.3",
"rollup-plugin-typescript2": "^0.25.0",
"ts-jest": "24.1.0",
"ts-node": "^8.0.3",
"tslint": "^5.13.0",
"typescript": "^3.3.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branch": "master"
},
"dependencies": {
"simplytyped": "^3.0.0",
"tslib": "^1.9.2"
}
}