-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "middleware-io",
"version": "2.8.1",
"description": "Modern middleware with promises and status",
"license": "MIT",
"author": {
"name": "Vladlen (Negezor)",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/negezor/middleware-io.git"
},
"homepage": "https://github.com/negezor/middleware-io#readme",
"bugs": "https://github.com/negezor/middleware-io/issues",
"keywords": [
"typescript",
"middleware",
"compose",
"ware",
"promise",
"async",
"await",
"modern",
"es2015",
"es6",
"es7",
"cjs",
"esm",
"js"
],
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@types/node": "^20.14.2",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"tinybench": "^2.8.0",
"tsx": "^4.15.5",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.4.5"
},
"scripts": {
"prepare": "npm run rollup:build && npm run test",
"build": "npm run rollup:build",
"watch": "npm run rollup:watch",
"clean": "rm -rf lib",
"rollup:build": "NODE_ENV=production rollup --bundleConfigAsCjs -c rollup.config.js",
"rollup:watch": "npm run rollup:build -- --watch",
"test": "npm run test:node && npm run lint",
"test:bench": "node --import tsx test/benchmark.bench.ts",
"test:node": "node --import tsx --test test/*.test.ts",
"lint": "npm run lint:biome",
"lint:biome": "biome lint --apply ./src",
"docs:generate": "typedoc --plugin typedoc-plugin-markdown --out docs/api-reference --excludeExternals --readme none src"
}
}