{
  "name": "monadness",
  "version": "0.5.2",
  "description": "TypeScript/JavaScript library of Maybe, Either and Tuple Monads.",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "scripts": {
    "compile-lib": "rm -rf lib/* && tsc",
    "compile-lib-es6": "rm -rf lib/* && tsc --target ES6",
    "webpack": "webpack -optimize-minimize -optimize-occurrence-order --optimize-dedupe ./lib/index.js ./dist/monadness.min.js",
    "webpack-es6": "webpack ./lib/index.js ./dist/monadness.es6.min.js",
    "build-test": "rm -rf test/**/*.js && tsc -p tsconfig.spec.json",
    "test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
    "test-local": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
    "bundle": "npm run compile-lib-es6 && npm run webpack-es6 && npm run compile-lib && npm run webpack"
  },
  "keywords": [
    "either",
    "maybe",
    "tuple",
    "functional",
    "functional programming",
    "functor",
    "applicative",
    "monad"
  ],
  "author": "Patrick Martin",
  "license": "MIT",
  "devDependencies": {
    "@types/mocha": "^2.2.38",
    "@types/node": "^7.0.4",
    "coveralls": "^2.11.15",
    "istanbul": "^0.4.5",
    "mocha": "^3.2.0",
    "tslint": "^4.4.2",
    "typescript": "^2.1.5",
    "webpack": "^1.14.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/patrimart/monadness-js"
  },
  "bugs": {
    "url": "https://github.com/patrimart/monadness-js/issues"
  }
}
