-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
44
45
46
47
48
49
50
{
"name": "async-queued",
"version": "0.1.3",
"description": "Simple library to use JS generators with runner function.",
"keywords": [
"generators",
"generator",
"runner",
"run",
"Generator",
"Generators",
"queue",
"run queue",
"async queue",
"queued"
],
"scripts": {
"coverage": "c8",
"compile": "tsc --project tsconfig.json",
"serve": "tsc && node ./lib/index.js",
"tests": "vitest"
},
"author": "lgtome <seryikotenok232@gmail.com>",
"license": "MIT",
"repository": "lgtome/async-queue",
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=18.0.0"
},
"sideEffects": false,
"type": "module",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.30.1",
"c8": "^7.13.0",
"typescript": "^5.0.4",
"vitest": "0.30.0"
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"reporter": "lcov",
"check-coverage": true
}
}