|
@ -1,19 +1,21 @@ |
|
|
{ |
|
|
{ |
|
|
"name": "select-return", |
|
|
"name": "@codefeathers/fuse", |
|
|
"version": "0.0.9", |
|
|
"version": "0.10.0", |
|
|
"description": "Return a function based on a condition. A functional alternative to switch-case.", |
|
|
"description": "Return a function based on a condition. A functional alternative to switch-case.", |
|
|
"main": "Select.js", |
|
|
"main": "index.js", |
|
|
"scripts": { |
|
|
"scripts": { |
|
|
"debug": "node --inspect-brk testscript", |
|
|
"debug": "node --inspect-brk testscript", |
|
|
"lint": "npx eslint .", |
|
|
"lint": "npx eslint .", |
|
|
"test": "npx jasmine", |
|
|
"test": "npx jasmine", |
|
|
"docs": "npx jsdoc Select.js README.md --destination docs" |
|
|
"docs": "npx jsdoc index.js README.md --destination docs" |
|
|
}, |
|
|
}, |
|
|
"repository": { |
|
|
"repository": { |
|
|
"type": "git", |
|
|
"type": "git", |
|
|
"url": "git+https://github.com/codefeathers/select-return.git" |
|
|
"url": "git+https://github.com/codefeathers/Fuse.git" |
|
|
}, |
|
|
}, |
|
|
"keywords": [ |
|
|
"keywords": [ |
|
|
|
|
|
"fuse", |
|
|
|
|
|
"function", |
|
|
"select", |
|
|
"select", |
|
|
"return", |
|
|
"return", |
|
|
"switch-case", |
|
|
"switch-case", |
|
@ -25,9 +27,9 @@ |
|
|
], |
|
|
], |
|
|
"license": "MIT", |
|
|
"license": "MIT", |
|
|
"bugs": { |
|
|
"bugs": { |
|
|
"url": "https://github.com/codefeathers/select-return/issues" |
|
|
"url": "https://github.com/codefeathers/Fuse/issues" |
|
|
}, |
|
|
}, |
|
|
"homepage": "https://github.com/codefeathers/select-return#readme", |
|
|
"homepage": "https://github.com/codefeathers/Fuse#readme", |
|
|
"devDependencies": { |
|
|
"devDependencies": { |
|
|
"eslint": "^4.19.1", |
|
|
"eslint": "^4.19.1", |
|
|
"jasmine": "^3.1.0", |
|
|
"jasmine": "^3.1.0", |
|
|