-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.75 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
51
52
53
54
55
56
57
{
"name": "@glandjs/http",
"version": "1.0.0-beta",
"description": "Glands is a web framework for Node.js",
"homepage": "https://github.com/glandjs/http#readme",
"author": "Mahdi",
"license": "MIT",
"workspaces": ["packages/*"],
"scripts": {
"test:unit": "mocha --require ts-node/register test/unit/**/*.spec.ts",
"test:integration": "mocha --require ts-node/register test/integration/**/*.spec.ts",
"lint": "prettier --check .",
"version": "changeset version",
"release": "pnpm build && pnpm changeset publish",
"release:alpha": "pnpm changeset publish --tag alpha",
"clean": "tsc -b --clean packages",
"build:http": "pnpm --filter @glandjs/http... build",
"build:express": "pnpm --filter @glandjs/express... build",
"build": "pnpm run build:http && pnpm run build:express"
},
"lint-staged": {
"**/*.ts": "prettier --ignore-path ./.prettierignore --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glandjs/http.git"
},
"bugs": {
"url": "https://github.com/glandjs/http/issues"
},
"keywords": ["gland", "http", "express", "fastify", "nodejs", "web", "medishn"],
"engines": {
"node": ">= 20"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^22.0.0",
"@types/sinon": "^17.0.3",
"chai": "^4.3.7",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"mocha": "^10.7.3",
"prettier": "^3.5.3",
"sinon": "^19.0.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@glandjs/events": "^1.1.0",
"@glandjs/common": "^1.0.3-beta",
"@glandjs/core": "^1.0.3-beta",
"@medishn/toolkit": "^1.0.4",
"reflect-metadata": "^0.2.2",
"tslib": "^2.8.1"
}
}