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