-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@codefeathers/fuse",
"version": "0.11.1",
"description": " FunctionSelect: Select a function that passes 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"
}
}