generated from wopjs/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@wopjs/async-seq",
"version": "0.1.2",
"description": "Run async functions one-by-one in a sequence.",
"repository": "wopjs/async-seq",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"ts-check": "tsc --noEmit",
"docs": "typedoc --options typedoc.json && prettier --ignore-path .prettierignore --write docs",
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.include=src/**",
"test:ci": "vitest --coverage --coverage.reporter=lcov --coverage.include=src/**",
"build": "tsup",
"build:min": "MINIFY=true tsup && node scripts/gzip.mjs",
"release": "commit-and-tag-version"
},
"keywords": [
"async",
"sequence",
"promise",
"function"
],
"maintainers": [
{
"name": "CRIMX",
"email": "straybugs@gmail.com",
"url": "https://github.com/crimx/"
},
{
"name": "hyrious",
"email": "hyrious@outlook.com",
"url": "https://github.com/hyrious/"
}
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^3.0.2",
"@wopjs/disposable": "^0.1.12",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"eslint-config-flat-gitignore": "^1.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-perfectionist": "^4.6.0",
"gzip-size": "^7.0.0",
"prettier": "^3.4.2",
"pretty-bytes": "^6.1.1",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
"vitest": "^3.0.2",
"yoctocolors": "^2.1.1"
}
}