-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.14 KB
/
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
49
50
51
52
53
54
55
56
{
"name": "@emphori/compose",
"description": "A lightweight functional composition helper",
"keywords": [
"functional",
"functional-programming",
"promise",
"promises",
"railway-orientated",
"railway-orientated-programming",
"strongly-typed",
"types",
"typescript"
],
"author": "Emphori (https://emphori.co)",
"contributors": [
"Iain Reid <[email protected]> (https://iainjreid.com)"
],
"homepage": "https://github.com/emphori/compose#readme",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/compose.js"
},
"files": [
"dist/compose.d.ts",
"dist/compose.js"
],
"scripts": {
"build": "tsc -b",
"test": "node --test"
},
"dependencies": {
"@emphori/promise": "^1.4.1"
},
"devDependencies": {
"@types/node": "^18.6.3",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/emphori/compose.git"
},
"bugs": {
"url": "https://github.com/emphori/compose/issues"
},
"release": {
"branches": [
"main"
]
}
}