-
Notifications
You must be signed in to change notification settings - Fork 245
/
package.json
73 lines (73 loc) · 1.52 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
{
"name": "node-static",
"version": "0.8.0",
"description": "simple, compliant file streaming module for node",
"author": "Alexis Sellier <[email protected]>",
"contributors": [
"Pablo Cantero <[email protected]>",
"Ionică Bizău <[email protected]>",
"Brett Zamir"
],
"type": "module",
"main": "./lib/node-static.js",
"exports": {
".": {
"import": "./lib/node-static.js",
"require": "./dist/node-static.cjs"
}
},
"license": "MIT",
"bin": {
"static": "bin/cli.js"
},
"keywords": [
"http",
"static",
"file",
"server"
],
"repository": {
"type": "git",
"url": "http://github.com/cloudhead/node-static"
},
"scripts": {
"build": "rollup -c",
"start": "./bin/cli.js",
"lint": "eslint .",
"mocha": "mocha test/integration --parallel",
"test": "c8 npm run mocha"
},
"dependencies": {
"colors": "1.4.0",
"command-line-basics": "^2.0.1",
"mime": "^3.0.0",
"minimatch": "^9.0.0"
},
"c8": {
"exclude": [
"dist",
"test"
]
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"node-fetch": "^2.6.6",
"rollup": "^4.21.0"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/cloudhead/node-static/issues"
},
"homepage": "https://github.com/cloudhead/node-static",
"directories": {
"example": "examples",
"test": "test"
}
}