rambda
Version:
Lightweight faster alternative to Ramda
92 lines (91 loc) • 2.47 kB
JSON
{
"name": "rambda",
"scripts": {
"prove": "jest source --json",
"test": "jest source --bail=true",
"cover:spec": "jest source --coverage --no-cache -w 1",
"cover": "yarn typings&&yarn cover:spec",
"out": "maided out",
"build": "yarn build:main&&yarn build:web",
"build:main": "cross-env NODE_ENV=build rollup -c files/rollup.config.js",
"build:web": "cross-env NODE_ENV=build rollup -c files/rollup.web.config.js",
"lint": "maided lint",
"readme": "maided readme",
"docs": "docsify init ./docs",
"typings": "dtslint --localTs ./node_modules/typescript/lib --expectOnly ./source",
"fix": "mkdir $HOME/.dts/perf -p"
},
"typings": "./index.d.ts",
"main": "./dist/rambda.js",
"version": "5.4.2",
"dependencies": {
"fs-extra": "^9.0.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-object-rest-spread": "7.9.6",
"@babel/preset-env": "7.9.6",
"@types/jest": "25.2.3",
"@types/ramda": "0.27.6",
"cross-env": "7.0.2",
"dtslint": "3.6.4",
"helpers-fn": "0.3.3",
"is-ci": "2.0.0",
"jest": "26.0.1",
"jest-extended": "0.11.5",
"lint-fn": "2.8.0",
"lodash": "4.17.15",
"maided": "0.1.3",
"rambdax": "3.7.0",
"ramda": "0.27.0",
"rollup": "2.10.9",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-sourcemaps": "0.6.2",
"string-fn": "2.11.1",
"typescript": "3.9.3"
},
"jest": {
"testRegex": ".*\\.spec\\.js$",
"setupFilesAfterEnv": [
"jest-extended"
],
"collectCoverageFrom": [
"source/*.js",
"!_internals",
"!benchmarks"
]
},
"files": [
"dist",
"src",
"_ts-toolbelt",
"index.d.ts",
"tools.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/selfrefactor/rambda.git"
},
"license": "MIT",
"author": "self_refactor",
"description": "Lightweight faster alternative to Ramda",
"module": "./dist/rambda.esm.js",
"umd": "./dist/rambda.umd.js",
"sideEffects": false,
"keywords": [
"ramda",
"fp",
"functional",
"utility",
"lodash"
],
"bugs": {
"url": "https://github.com/selfrefactor/rambda/issues"
},
"homepage": "https://github.com/selfrefactor/rambda#readme"
}