-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "@hyperjump/pact",
"version": "1.4.0",
"description": "Higher order functions for iterators and async iterators",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./async": "./src/async.js"
},
"scripts": {
"lint": "eslint src",
"test": "vitest --watch=false",
"type-check": "tsc --noEmit",
"docs": "typedoc --excludeExternals"
},
"repository": "github:hyperjump-io/pact",
"keywords": [
"Hyperjump",
"Promise",
"higher order functions",
"iterator",
"async iterator",
"generator",
"async generator",
"async"
],
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hyperump-io"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@types/node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"typedoc": "*",
"typescript-eslint": "*",
"vitest": "*"
}
}