-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.79 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.79 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "newgatejs",
"version": "1.2.3",
"publishConfig": {
"access": "public"
},
"description": "modern Node.js backend framework designed for developers who want to handle multiple data formats effortlessly. It combines the simplicity of Express-style routing with automatic parsing for JSON, CSV, XML, YAML, form-data, and binary data.",
"main": "index.js",
"type": "module",
"bin": {
"newgatejs": "bin/newgatejs.js"
},
"scripts": {
"test": "vitest",
"test:benchmark": "vitest tests/benchmark.test.js",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XplnHUB/newgatejs.git"
},
"keywords": [
"node",
"nodejs",
"backend",
"framework",
"routing",
"express-style",
"middleware",
"http-server",
"parser",
"json",
"csv",
"yaml",
"xml",
"form-data",
"multipart",
"binary",
"body-parser",
"api",
"rest",
"server",
"streaming",
"file-upload",
"iot",
"edge",
"newgatejs",
"webframework",
"lightweight",
"minimal",
"express-alternative"
],
"author": "CodeMaverick-143 && XplnHUB",
"license": "ISC",
"bugs": {
"url": "https://github.com/XplnHUB/newgatejs/issues"
},
"homepage": "https://github.com/XplnHUB/newgatejs#readme",
"dependencies": {
"busboy": "^1.6.0",
"csv-parse": "^5.6.0",
"xml2js": "^0.6.2",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/node": "^22.19.1",
"eslint": "^9.39.1",
"husky": "^8.0.3",
"prettier": "^3.6.2",
"vitest": "^1.6.1"
},
"optionalDependencies": {
"toml": "^3.0.0",
"protobufjs": "^7.2.5",
"msgpackr": "^1.10.1"
}
}