forked from tomphttp/bare-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 837 Bytes
/
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
{
"name": "bare-server-node",
"description": "Back.",
"version": "0.0.1",
"homepage": "https://github.com/tomphttp",
"bugs": {
"url": "https://github.com/tomphttp/bare-server-node/issues",
"email": "tomp@sys32.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/tomphttp/bare-server-node.git"
},
"author": {
"name": "TOMP Development",
"email": "tomp@sys32.dev",
"url": "https://github.com/tomphttp"
},
"keywords": [
"proxy",
"tomp",
"tomphttp"
],
"license": "GPL-3.0",
"type": "module",
"main": "Server.js",
"dependencies": {
"commander": "^9.0.0",
"fetch-headers": "^3.0.1"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "2.6.0"
},
"lint-staged": {
"*.{js,json}": "prettier --write"
},
"scripts": {
"prepare": "husky install"
}
}