-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 771 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 771 Bytes
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
{
"name": "errable",
"version": "1.0.0",
"description": "Simple and approachable, type friendly monads for javascript and typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest"
},
"keywords": [
"Promise",
"Functional Programming",
"Monad"
],
"author": "interacsean",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/interacsean/errable.git"
},
"bugs": {
"url": "https://github.com/interacsean/errable/issues"
},
"homepage": "https://github.com/interacsean/errable#readme",
"devDependencies": {
"@types/jest": "24.0.11",
"jest": "23.6.0",
"ts-jest": "23.10.5",
"typescript": "3.4.4"
}
}