generated from wopjs/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "@wopjs/async-seq",
"version": "0.1.0",
"description": "Run async functions in 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": "pnpm run build",
"lint": "eslint --ext .ts,.tsx . && prettier --check .",
"docs": "typedoc --options typedoc.json",
"build": "tsup",
"test": "vitest",
"coverage": "vitest run --coverage",
"build:min": "cross-env NODE_ENV=production MINIFY=true tsup && node scripts/gzip.mjs"
},
"keywords": [
"async",
"sequence",
"promise",
"function"
],
"maintainers": [
{
"name": "CRIMX",
"email": "[email protected]",
"url": "https://github.com/crimx/"
},
{
"name": "hyrious",
"email": "[email protected]",
"url": "https://github.com/hyrious/"
}
],
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.12",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitest/coverage-c8": "^0.31.0",
"@wopjs/disposable": "^0.0.9",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"gzip-size": "^7.0.0",
"prettier": "^2.8.7",
"pretty-bytes": "^6.1.0",
"tsup": "^6.7.0",
"typedoc": "^0.23.28",
"typescript": "^5.0.4",
"vitest": "^0.31.1",
"yoctocolors": "^1.0.0"
},
"packageManager": "[email protected]+sha1.8c155dc114e1689d18937974f6571e0ceee66f1d"
}