This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.01 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": "@foxify/router",
"version": "1.0.0-beta.3",
"description": "Foxify HTTP Router",
"homepage": "https://github.com/foxifyjs/router#readme",
"author": "Ardalan Amini <[email protected]> (https://ardalanamini.com/)",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/foxify"
}
],
"license": "MIT",
"repository": "github:foxifyjs/router",
"bugs": {
"url": "https://github.com/foxifyjs/router/issues"
},
"keywords": [
"foxify",
"router",
"nodejs",
"http",
"request",
"response"
],
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- --watch",
"build:esm": "tsc -p tsconfig.esm.json",
"build:hybrid": "npm run build && npm run build:esm",
"lint": "eslint src __tests__",
"lint:format": "prettier -w src __tests__ && eslint --fix src __tests__",
"test": "node --no-compilation-cache --expose-gc node_modules/jest/bin/jest --logHeapUsage",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run test:coverage -- --ci --verbose --no-cache",
"benchmarks": "find benchmarks -maxdepth 1 -name '*.js' -exec benchmarks/start.sh {} \\;"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"main": ".build/cjs/index.js",
"module": ".build/esm/index.js",
"types": ".build/cjs/index.d.ts",
"peerDependencies": {
"@foxify/http": "^1",
"prototyped.js": "^3"
},
"dependencies": {
"escape-html": "^1.0.3",
"fast-json-stringify": "^2.7.13"
},
"devDependencies": {
"@foxify/http": "^1.0.0-beta.2",
"@foxify/inject": "^1.1.0",
"@types/escape-html": "^1.0.2",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"prettier": "^2.6.2",
"prototyped.js": "^3.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"workspaces": [
"benchmarks"
]
}