-
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.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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": "edno-ts",
"version": "4.1.0",
"description": "fast and simple node framework with poo and decorators made with pure node",
"main": "src/edno",
"scripts": {
"build": "tsc",
"prettier": "prettier -w src/",
"lint": "eslint src/ --fix",
"test": "jest --config jest.config.ts --passWithNoTests",
"test:watch": "jest --config jest.config.ts --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"app",
"api",
"framework",
"edno",
"node",
"rest",
"router",
"web",
"restful",
"decorators",
"typescript",
"OOP"
],
"author": "blopaa",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blopaa/Edno/issues"
},
"files": [
"/lib/**/*"
],
"homepage": "https://github.com/Blopaa/Edno#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Blopaa/Edno.git"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20.0.0"
}
}