-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 1.94 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pure-http",
"version": "4.0.2",
"description": "The simple web framework for Node.js with zero dependencies.",
"keywords": [
"pure-http",
"express",
"http",
"rest",
"restful",
"framework",
"router",
"server",
"webserver"
],
"homepage": "https://github.com/htdangkhoa/pure-http",
"bugs": {
"url": "https://github.com/htdangkhoa/pure-http/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/htdangkhoa/pure-http.git"
},
"license": "MIT",
"author": "htdangkhoa <huynhtran.dangkhoa@gmail.com> (https://github.com/htdangkhoa)",
"contributors": [
"huynhtran.dangkhoa@gmail.com"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.js",
"index.d.ts",
"LICENSE"
],
"scripts": {
"test": "jest --collectCoverage --no-cache",
"test:cov": "npm run test",
"posttest:cov": "coveralls < coverage/lcov.info"
},
"dependencies": {},
"devDependencies": {
"@tinyhttp/app": "1.3.15",
"body-parser": "^1.19.0",
"commander": "^8.2.0",
"connect-timeout": "^1.9.0",
"consolidate": "^0.16.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"coveralls": "^3.1.1",
"ejs": "^3.1.6",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"fastify": "^3.21.6",
"fastify-express": "^0.3.3",
"husky": "^7.0.2",
"jest": "^27.2.2",
"jest-junit": "^16.0.0",
"pem": "^1.14.4",
"prettier": "^2.4.1",
"serve-static": "^1.14.1",
"supertest": "^6.1.6",
"swig": "^1.4.2",
"wrk": "^1.2.1"
},
"engines": {
"node": ">= 16"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"jest": {
"reporters": [
"default",
"jest-junit"
]
}
}