forked from glandjs/gland
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@glandjs/core",
"version": "1.0.0-alpha.1",
"description": "Glands is a web framework for Node.js",
"homepage": "https://github.com/glandjs/gland#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": "rm -rf packages/**/**/**/*.d.ts packages/**/**/*.d.ts packages/**/*.d.ts packages/**/**/**/*.js packages/**/**/*.js packages/**/*.js ",
"build": "pnpm -r build"
},
"lint-staged": {
"**/*.ts": "prettier --ignore-path ./.prettierignore --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glandjs/gland.git"
},
"bugs": {
"url": "https://github.com/glandjs/gland/issues"
},
"keywords": [
"gland",
"nodejs",
"http",
"web",
"medishn"
],
"engines": {
"node": ">= 20"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/gland",
"donation": {
"text": "Become a partner:"
}
},
"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",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@medishn/toolkit": "^1.0.3",
"reflect-metadata": "^0.2.2",
"tslib": "^2.8.1"
}
}