-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 839 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
{
"name": "localhost",
"version": "0.4.1",
"description": "Http static file server",
"type": "module",
"main": "./index.js",
"scripts": {
"lint": "eslint .",
"start": "node ./bin/localhost.js",
"test": "npm run lint"
},
"files": [
"index.js",
"server.js",
"bin/"
],
"repository": {
"type": "git",
"url": "https://github.com/MrSwitch/localhost.git"
},
"author": "Andrew Dodson <andrewjdodson@gmail.com>",
"license": "BSD",
"bin": {
"localhost": "./bin/localhost.js"
},
"bugs": {
"url": "https://github.com/MrSwitch/localhost/issues"
},
"dependencies": {
"finalhandler": "^1.2.0",
"minimist": "^1.2.6",
"portfinder": "^1.0.28",
"serve-static": "^1.15.0"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-5app": "^0.16.4"
}
}