-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 982 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
39
40
41
42
43
44
{
"_nodeVersion": "5.1.0",
"name": "union-type-option",
"version": "0.4.0",
"description": "Option / Maybe implementation for union-type",
"main": "option.js",
"scripts": {
"test": "tape test/**/*.js | faucet"
},
"author": "Jethro Larson",
"license": "MIT",
"bugs": {
"url": "https://github.com/jethrolarson/union-type-option/issues"
},
"maintainers": [
{
"name": "jethrolarson",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/jethrolarson/union-type-option.git"
},
"homepage": "https://github.com/jethrolarson/union-type-option#readme",
"keywords": [
"adt",
"type",
"union",
"maybe",
"option"
],
"readmeFilename": "README.md",
"dependencies": {
"union-type": "^0.3.x",
"ramda": "^0.19.x"
},
"devDependencies": {
"tape": "^4.4.x",
"tape-catch": "^1.0.x",
"faucet": "0.0.1"
},
"engine": "node >= 4.0.0"
}