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) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 799 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.1.5",
"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"
},
"keywords" : [
"static",
"web",
"server",
"files",
"mime",
"middleware"
],
"engines": {
"node": "*"
},
"dependencies": {
"mime" : "1.2.5",
"ent" : "0.0.x"
},
"devDependencies": {
"tap" : "0.0.x",
"request" : "2.2.x",
"express" : "2.5.x",
"union" : "0.1.x"
}
}