{
	"name": "rambda",
	"version": "7.5.0",
	"scripts": {
		"publishx": "node files/publish",
		"populatedocs": "cd ../rambda-scripts && yarn populate:docs",
		"populatedocs:x": "cd ../rambda-scripts && yarn populate:docs:rambdax",
		"populatereadme": "cd ../rambda-scripts && yarn populate:readme",
		"populatereadme:x": "cd ../rambda-scripts && yarn populate:readme:rambdax",
		"out": "yarn populatedocs && yarn populatereadme && yarn immutable && yarn build",
		"pull": "cd ../rambda-scripts && git pull",
		"outx": "yarn pull && yarn out",
		"x": "yarn populatedocs:x && yarn populatereadme:x && yarn immutable:x",
		"github": "cd ../rambda-scripts && yarn github",
		"fix-docsify": "cd ../rambda-scripts && yarn fix-docsify:rambda",
		"immutable": "cd ../rambda-scripts && yarn immutable:rambda",
		"immutable:x": "cd ../rambda-scripts && yarn immutable:rambdax",
		"usedby": "cd ../rambda-scripts && yarn usedby",
		"lint:all": "cd ../rambda-scripts && yarn lint",
		"lint:staged": "cd ../rambda-scripts && yarn lint:staged",
		"lint": "yarn git:add && yarn lint:staged && yarn git:add",
		"git:add": "git add -A",
		"build": "yarn build:main && yarn build:web",
		"build:web": "cross-env NODE_ENV=build rollup -c files/rollup.web.config.mjs",
		"build:main": "cross-env NODE_ENV=build rollup -c files/rollup.config.mjs",
		"docs": "npx docsify-cli init ./docs && yarn fix-docsify",
		"new": "cd ../rambda-scripts && yarn new",
		"run:ramda:test": "cd ../rambda-scripts && yarn run:ramda:test",
		"consume-typings:clone": "cd .. && git clone --depth 1 https://github.com/selfrefactor/rambda-scripts.git rambda-scripts-clone",
		"consume-typings:execute": "cd ../rambda-scripts-clone/scripts/consume-typings && yarn start",
		"consume-typings": "yarn consume-typings:clone && yarn consume-typings:execute",
		"test:consume-typings": "jest source/_consumeTypings.test.js",
		"test:typings": "dtslint --localTs ./node_modules/typescript/lib --expectOnly ./source",
		"test:all": "jest source/*.spec.js -u --bail=false",
		"test": "jest -o -u --watch",
		"test:ci": "jest source/*.spec.js --coverage --no-cache -w 1",
		"build:step": "yarn populatedocs && yarn populatereadme && yarn build:main",
		"benchmark:all": "yarn build:step && cd ../rambda-scripts && yarn benchmark:all",
		"benchmark:check": "yarn build:step && METHOD=compose yarn benchmark:check:apply",
		"benchmark:check:apply": "cd ../rambda-scripts && yarn check-benchmark",
		"benchmark": "cd ../rambda-scripts && RAMBDA_RUN_ALL=ON RAMBDA_RUN_INDEXES=ON yarn benchmark",
		"d:rambda-scripts": "cd ../rambda-scripts && run d",
		"d": "yarn out && yarn lint && run d && yarn d:rambda-scripts"
	},
	"dependencies": {},
	"devDependencies": {
		"@babel/core": "7.20.2",
		"@babel/plugin-proposal-object-rest-spread": "7.20.2",
		"@babel/preset-env": "7.20.2",
		"@rollup/plugin-babel": "6.0.2",
		"@rollup/plugin-commonjs": "23.0.2",
		"@rollup/plugin-node-resolve": "15.0.1",
		"@rollup/plugin-replace": "5.0.1",
		"@types/jest": "29.2.2",
		"@types/ramda": "0.28.23",
		"combinate": "1.1.11",
		"cross-env": "7.0.3",
		"dtslint": "4.2.1",
		"helpers-fn": "1.6.0",
		"is-ci": "3.0.1",
		"jest": "29.2.2",
		"jest-extended": "3.1.0",
		"lodash": "4.17.21",
		"rambdax": "8.1.0",
		"ramda": "0.28.0",
		"rollup": "3.2.5",
		"rollup-plugin-cleanup": "3.2.1",
		"rollup-plugin-sourcemaps": "0.6.3",
		"rollup-plugin-uglify": "6.0.4",
		"typescript": "4.8.4"
	},
	"jest": {
		"testEnvironment": "node",
		"testRegex": ".*\\.(spec|test)\\.js$",
		"setupFilesAfterEnv": [
			"./files/testSetup.js"
		],
		"collectCoverageFrom": [
			"source/*.js",
			"!_internals",
			"!benchmarks"
		]
	},
	"files": [
		"dist",
		"src",
		"esm",
		"mjs",
		"README.md",
		"CHANGELOG.md",
		"index.d.ts",
		"immutable.d.ts",
		"rambda.js",
		"immutable.js"
	],
	"repository": {
		"type": "git",
		"url": "git+https://github.com/selfrefactor/rambda.git"
	},
	"license": "MIT",
	"author": "self_refactor",
	"description": "Lightweight and faster alternative to Ramda with included TS definitions",
	"sideEffects": false,
	"main": "./dist/rambda.js",
	"umd": "./dist/rambda.umd.js",
	"module": "./rambda.js",
	"types": "./index.d.ts",
	"keywords": [
		"ramda",
		"fp",
		"functional",
		"utility",
		"lodash"
	],
	"homepage": "https://github.com/selfrefactor/rambda#readme"
}
