-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "anywhere",
"version": "1.7.0",
"description": "Run static file server anywhere",
"bin": {
"anywhere": "./bin/anywhere"
},
"keywords": [
"Static",
"file",
"server",
"Assets"
],
"author": "Jackson Tian",
"license": "MIT",
"dependencies": {
"connect": "^3.6.6",
"connect-history-api-fallback": "^2.0.0",
"debug": "^4.3.4",
"http-proxy-middleware": "^3.0.5",
"mime-types": "^3.0.2",
"minimist": "^1.2.0",
"serve-index": "^1.9.1",
"serve-static": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git://github.com/JacksonTian/anywhere.git"
},
"bugs": {
"url": "https://github.com/JacksonTian/anywhere/issues"
},
"homepage": "https://github.com/JacksonTian/anywhere",
"files": [
"bin",
"keys"
],
"scripts": {
"lint": "eslint bin/anywhere",
"lint:fix": "eslint bin/anywhere --fix",
"test": "node --test test/*.test.js",
"test:cov": "c8 --reporter=html --reporter=text npm test"
},
"devDependencies": {
"eslint": "^10.0.1",
"c8": "^11.0.0"
}
}