-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.48 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
{
"name": "@mr-mkz/axon",
"version": "0.5.1",
"description": "A backend library that aims to be simple and powerful.",
"author": "Mr.MKZ",
"license": "ISC",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mr-MKZ/AxonJs.git"
},
"keywords": [
"http-router",
"http",
"backend",
"nodejs",
"javascript",
"npm",
"restapi",
"rest-api",
"AxonJs",
"Axon"
],
"bugs": {
"url": "https://github.com/Mr-MKZ/AxonJs/issues"
},
"homepage": "https://github.com/Mr-MKZ/AxonJs#readme",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"dev-server": "nodemon examples/index.ts",
"build": "tsup",
"test": "jest",
"doc": "npx typedoc src/index.ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/object-assign": "^4.0.33",
"@types/vary": "^1.1.3",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"path-to-regexp": "^8.1.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typedoc": "^0.26.7",
"typescript": "^5.5.4"
},
"dependencies": {
"@spacingbat3/kolor": "^4.0.0",
"@types/node": "^22.5.4",
"joi": "^17.13.3",
"moment": "^2.30.1",
"object-assign": "^4.1.1",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"vary": "^1.1.2",
"yup": "^1.4.0",
"zod": "^3.23.8"
}
}