forked from jfhbrook/node-ecstatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 836 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 836 Bytes
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
{
"author": "Joshua Holbrook <josh@nodejitsu.com> (http://jesusabdullah.net)",
"name": "ecstatic",
"description": "A simple static file server middleware that works with both Express and Flatiron",
"version": "0.5.3",
"homepage": "https://github.com/jesusabdullah/node-ecstatic",
"repository": {
"type": "git",
"url": "git@github.com:jesusabdullah/node-ecstatic.git"
},
"main": "./lib/ecstatic.js",
"scripts": {
"test": "tap test/*.js"
},
"bin": "./lib/ecstatic.js",
"keywords": [
"static",
"web",
"server",
"files",
"mime",
"middleware"
],
"dependencies": {
"mime": "1.2.x",
"ent": "0.0.x",
"minimist": "~0.0.5"
},
"devDependencies": {
"tap": "0.3.x",
"request": "2.12.x",
"express": "3.0.x",
"union": "0.3.x",
"mkdirp": "0.3.x"
}
}