-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 969 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
45
46
47
48
{
"name": "results",
"version": "0.14.1",
"description": "Discriminated Unions including Maybe (an option type) and Result for javascript with fewer bugs",
"main": "index.js",
"scripts": {
"gulp": "gulp",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "[email protected]:uniphil/results.git"
},
"keywords": [
"Rust",
"Result",
"Option",
"Maybe",
"Some",
"None",
"Ok",
"Err",
"Enum",
"Union",
"Match"
],
"contributors": [
"mystor",
"uniphil"
],
"license": "Public Domain",
"bugs": {
"url": "https://github.com/uniphil/results/issues"
},
"homepage": "https://github.com/uniphil/results",
"devDependencies": {
"del": "^2.0.0",
"gulp": "^3.8.11",
"gulp-babel": "^5.2.1",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^1.0.0",
"gulp-rename": "^1.2.0",
"immutable": "^3.7.5",
"vinyl-paths": "^2.0.0"
},
"dependencies": {
}
}