mirror of https://github.com/codefeathers/fuse
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
918 B
38 lines
918 B
{
|
|
"name": "@codefeathers/fuse",
|
|
"version": "0.10.0",
|
|
"description": "Return a function based on a condition. A functional alternative to switch-case.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"debug": "node --inspect-brk testscript",
|
|
"lint": "npx eslint .",
|
|
"test": "npx jasmine",
|
|
"docs": "npx jsdoc index.js README.md --destination docs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/codefeathers/Fuse.git"
|
|
},
|
|
"keywords": [
|
|
"fuse",
|
|
"function",
|
|
"select",
|
|
"return",
|
|
"switch-case",
|
|
"functional"
|
|
],
|
|
"author": "Muthu Kumar (@MKRhere)",
|
|
"contributors": [
|
|
"Dani (@Floofies)"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/codefeathers/Fuse/issues"
|
|
},
|
|
"homepage": "https://github.com/codefeathers/Fuse#readme",
|
|
"devDependencies": {
|
|
"eslint": "^4.19.1",
|
|
"jasmine": "^3.1.0",
|
|
"jsdoc": "^3.5.5"
|
|
}
|
|
}
|
|
|