{
  "name": "rescape-ramda",
  "version": "1.6.161",
  "description": "Functions to augment Ramda and Folktale",
  "homepage": "https://www.rescapes.net/",
  "author": "Andy Likuski",
  "license": "MIT",
  "main": "src/index.mjs",
  "module": "src/index.mjs",
  "type": "module",
  "files": [
    "lib",
    "src"
  ],
  "repository": "git@github.com:calocan/rescape-ramda.git",
  "scripts": {
    "clean": "rimraf lib dist es coverage",
    "lint": "eslint src",
    "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
    "test:watch": "yarn test -- --watch",
    "test:cov": "yarn test -- --coverage",
    "build": "rollup -c",
    "prepare": "yarn run clean && yarn run lint && yarn test && yarn run build",
    "docs:clean": "rimraf _book",
    "docs:prepare": "gitbook install",
    "docs:build": "yarn run docs:prepare && gitbook build -g reactjs/redux && cp logo/apple-touch-icon.png _book/gitbook/images/apple-touch-icon-precomposed-152.png && cp logo/favicon.ico _book/gitbook/images",
    "docs:watch": "yarn run docs:prepare && gitbook serve",
    "docs:publish": "yarn run docs:clean && yarn run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:calocan/rescape-ramda.git gh-pages --force",
    "build-publish-patch": "yarn run build && yarn run publish-patch",
    "build-publish-minor": "yarn run build && yarn run publish-minor",
    "publish-patch": "yarn version --patch && yarn publish --non-interactive",
    "publish-minor": "yarn version --minor && yarn publish --non-interactive"
  },
  "dependencies": {
    "folktale": "^2.3.2",
    "fs-extra": "^9.0.1",
    "namedtuplemap": "^1.0.0",
    "ramda-fantasy": "^0.8.0",
    "ramda-maybe": "^0.18.0",
    "util": "^0.12.3"
  },
  "devDependencies": {
    "@jest/globals": "^26.6.2",
    "@types/jest": "^26.0.15",
    "cross-env": "^7.0.2",
    "eslint": "^7.13.0",
    "eslint-loader": "^4.0.2",
    "eslint-plugin-jest": "^24.1.3",
    "extract-text-webpack-plugin": "^3.0.2",
    "fsevents": "^2.2.1",
    "jest": "^26.6.3",
    "jsdom": "^16.4.0",
    "raf": "^3.4.1",
    "react-dev-utils": "^11.0.0",
    "rimraf": "^3.0.0",
    "rollup": "^2.33.1",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-commonjs": "10.1.0",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "1.4.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-replace": "^2.2.0",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-watch": "4.3.1",
    "stack-trace": "^0.0.10",
    "whatwg-fetch": "^3.5.0"
  },
  "peerDependencies": {
    "ramda": "^0.27.0"
  },
  "jest": {
    "modulePaths": [
      "<rootDir>/src"
    ],
    "collectCoverageFrom": [
      "src/**/*.{js,mjs}"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/config/jestsetup.js"
    ],
    "testMatch": [
      "<rootDir>/src/**/__tests__/**/*.{js,mjs}",
      "<rootDir>/src/**/?(*.)(spec|test).{js,mjs}"
    ],
    "testEnvironment": "jest-environment-node",
    "testURL": "http://localhost",
    "transform": {},
    "transformIgnorePatterns": [
      "[/\\\\]node_modules[/\\\\].+\\.(js|mjs)$"
    ],
    "moduleNameMapper": {},
    "moduleFileExtensions": [
      "web.js",
      "js",
      "json",
      "node"
    ]
  }
}
