ramda-extension
Version:
Helpful functions built on top of the mighty Ramda
103 lines (102 loc) • 2.52 kB
JSON
{
"name": "ramda-extension",
"version": "0.13.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tommmyy/ramda-extension.git"
},
"keywords": [
"ramda",
"ramdajs",
"utils",
"functional programming",
"case conversion",
"PascalCase",
"dot.case",
"camelCase",
"lower first letter",
"upper first letter",
"classnames",
"keymirror",
"camelizeKeys"
],
"description": "Helpful functions built on top of the mighty Ramda",
"unpkg": "dist/ramda-extension.min.js",
"module": "./es/index.js",
"main": "./lib/index.js",
"files": [
"es",
"lib",
"dist"
],
"author": {
"name": "Tomas Konrady",
"email": "tomaskonrady@gmail.com",
"web": "https://github.com/tommmyy"
},
"contributors": [
{
"name": "Lukas Sulik",
"email": "lukas.sulik@hotmail.com",
"web": "https://github.com/aizerin"
},
{
"name": "Lukas Duspiva",
"web": "https://github.com/lukasduspiva"
},
{
"name": "Jiri Bradle",
"web": "https://github.com/jbradle"
},
{
"name": "Will Farley",
"email": "a.will.farley@gmail.com",
"web": "https://github.com/goldhand"
}
],
"sideEffects": false,
"scripts": {
"build": "yarn clean && yarn build:es && yarn build:cjs && yarn build:umd",
"build:es": "cross-env BABEL_ENV=es babel --ignore '**/__tests__/*.js' --root-mode upward src --out-dir es",
"build:cjs": "cross-env BABEL_ENV=commonjs babel --ignore '**/__tests__/*.js' --root-mode upward src --out-dir lib",
"build:umd": "rollup -c ./rollup.config.js",
"clean": "rimraf es lib dist"
},
"peerDependencies": {
"ramda": ">=0.30.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"babel-core": "^7.0.0-bridge",
"benchmark": "^2.1.4",
"classnames": "^2.2.6",
"escope": "3.6.0",
"fs-extra": "^9.1.0",
"ramda": "^0.30.1",
"rimraf": "3.0.2",
"rollup": "^2.43.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"exports": {
".": {
"require": "./lib/index.js",
"import": "./es/index.js",
"default": "./lib/index.js"
},
"./es/*": "./es/*.js",
"./lib/*": "./lib/*.js",
"./dist/*": "./dist/*.js",
"./es/": "./es/",
"./lib/": "./lib/",
"./dist/": "./dist/"
},
"gitHead": "bd44206138a5953ec9b4e53a85b4e50bbee685ff"
}