-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.63 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "bingo-functional-js",
"version": "0.1.0-beta-5",
"description": "A port of the PHP bingo-functional library",
"main": "index.js",
"scripts": {
"test": "nyc riteway tests/**/*.test.js | tap-nirvana",
"lint": "eslint --color --ext .js --fix src tests",
"lint:dry": "eslint --color --ext .js --fix-dry-run src tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ace411/bingo-functional-js.git"
},
"keywords": [
"bingo-functional",
"curry",
"partial application",
"helpers",
"compose",
"zip",
"map",
"reduce",
"fold",
"filter",
"monads",
"immutability",
"IO monad",
"Reader monad",
"Writer monad",
"State monad",
"Maybe monad",
"referential transparency",
"fp",
"functional programming",
"bingo",
"Either",
"Maybe",
"Applicative",
"Functor",
"fantasy land",
"collections",
"immutable lists",
"union types",
"functors",
"lambda"
],
"author": "Lochemem Bruno Michael",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ace411/bingo-functional-js/issues"
},
"homepage": "https://github.com/ace411/bingo-functional-js#readme",
"dependencies": {
"deep-equal": "~2.0.1"
},
"devDependencies": {
"@babel/core": "~7",
"@babel/preset-env": "~7",
"babel-eslint": "~10",
"babel-loader": "~8",
"eslint": "~6",
"eslint-config-airbnb": "~18",
"eslint-plugin-import": "~2",
"eslint-plugin-jsx-a11y": "~6.2.3",
"eslint-plugin-react": "~7.17.0",
"nyc": "~15.0.0",
"riteway": "~6.1.1",
"tap-nirvana": "~1.1.0"
}
}