{
	"name": "rambda",
	"version": "7.2.1",
	"scripts": {
		"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.js",
		"build:main": "cross-env NODE_ENV=build rollup -c files/rollup.config.js",
		"docs": "npx docsify-cli init ./docs && yarn fix-docsify",
		"new": "cd ../rambda-scripts && yarn new",
		"test:all": "jest source -u --bail=false",
		"test": "jest -o --watch",
		"cover:spec": "jest source --coverage --no-cache -w 1",
		"cover": "yarn typings && yarn cover:spec",
		"build:step": "yarn populatedocs && yarn populatereadme && yarn build:main",
		"benchmark:check:apply": "cd ../rambda-scripts && yarn check-benchmark",
		"benchmark:check": "yarn build:step && METHOD=compose yarn benchmark:check:apply",
		"benchmark:single": "cd ../rambda-scripts && METHOD=uniqWith RAMBDA_RUN_ALL=ON RAMBDA_RUN_INDEXES=ON yarn benchmark",
		"benchmark:all": "yarn build:step && cd ../rambda-scripts && yarn benchmark:all",
		"benchmark": "yarn build:step && yarn benchmark:single",
		"typings": "dtslint --localTs ./node_modules/typescript/lib --expectOnly ./source",
		"d:rambda-scripts": "cd ../rambda-scripts && run d",
		"d": "yarn out && yarn lint && run d && yarn d:rambda-scripts",
		"fix": "mkdir $HOME/.dts/perf -p"
	},
	"dependencies": {},
	"devDependencies": {
		"@babel/core": "7.18.9",
		"@babel/plugin-proposal-object-rest-spread": "7.18.9",
		"@babel/preset-env": "7.18.9",
		"@rollup/plugin-babel": "5.3.1",
		"@rollup/plugin-commonjs": "22.0.1",
		"@rollup/plugin-json": "4.1.0",
		"@rollup/plugin-node-resolve": "13.3.0",
		"@rollup/plugin-replace": "4.0.0",
		"@types/jest": "28.1.6",
		"@types/ramda": "0.28.15",
		"combinate": "1.1.11",
		"cross-env": "7.0.3",
		"dtslint": "4.2.1",
		"helpers-fn": "1.6.0",
		"is-ci": "3.0.1",
		"jest": "28.1.3",
		"jest-extended": "3.0.1",
		"lodash": "4.17.21",
		"rambdax": "8.0.1",
		"ramda": "0.28.0",
		"rollup": "2.77.2",
		"rollup-plugin-cleanup": "3.2.1",
		"rollup-plugin-sourcemaps": "0.6.3",
		"rollup-plugin-uglify": "6.0.4",
		"typescript": "4.7.4"
	},
	"jest": {
		"testEnvironment": "node",
		"testRegex": ".*\\.spec\\.js$",
		"setupFilesAfterEnv": [
			"./files/testSetup.js"
		],
		"collectCoverageFrom": [
			"source/*.js",
			"!_internals",
			"!benchmarks"
		]
	},
	"files": [
		"dist",
		"src",
		"README.md",
		"CHANGELOG.md",
		"index.d.ts",
		"immutable.d.ts",
		"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": "./dist/rambda.mjs",
	"types": "./index.d.ts",
	"exports": {
		".": {
			"import": "./dist/rambda.mjs",
			"require": "./dist/rambda.js",
			"default": "./dist/rambda.js",
			"types": "./index.d.ts"
		},
		"./immutable": {
			"import": "./immutable.js",
			"require": "./immutable.js",
			"default": "./immutable.js",
			"types": "./immutable.d.ts"
		}
	},
	"keywords": [
		"ramda",
		"fp",
		"functional",
		"utility",
		"lodash"
	],
	"homepage": "https://github.com/selfrefactor/rambda#readme"
}
