-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
42 lines (42 loc) · 1012 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": "http-server-upload",
"version": "3.0.0",
"description": "A Simple zero-configuration command-line http server for uploading files",
"bin": "http-server-upload.js",
"main": "http-server-upload.js",
"type": "module",
"keywords": [
"http",
"upload",
"fileupload",
"server"
],
"author": "Peter Müller <[email protected]> (https://crycode.de/)",
"license": "MIT",
"homepage": "https://github.com/crycode-de/http-server-upload",
"repository": {
"type": "git",
"url": "https://github.com/crycode-de/http-server-upload.git"
},
"bugs": {
"url": "https://github.com/crycode-de/http-server-upload/issues"
},
"files": [
"http-server-upload.js",
"README.md"
],
"dependencies": {
"formidable": "^3.5.1"
},
"devDependencies": {
"@crycode/eslint-config-js": "^1.1.0",
"eslint": "^8.57.0"
},
"engines": {
"node": ">=14.18"
},
"scripts": {
"test": "./test/test.sh",
"lint": "eslint http-server-upload.js"
}
}