-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
41 lines (41 loc) · 889 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
40
41
{
"name": "st",
"version": "3.0.1",
"description": "A module for serving static files. Does etags, caching, etc.",
"main": "st.js",
"bin": "bin/server.js",
"dependencies": {
"async-cache": "^1.1.0",
"bl": "^5.0.0",
"fd": "~0.0.3",
"mime": "^2.5.2",
"negotiator": "~0.6.2"
},
"optionalDependencies": {
"graceful-fs": "^4.2.3"
},
"devDependencies": {
"request": "^2.88.2",
"rimraf": "^3.0.2",
"standard": "^16.0.3",
"tap": "^15.0.9"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && tap test/*.js test/cli/*-test.js --no-coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/isaacs/st"
},
"keywords": [
"static",
"file",
"serve",
"etag",
"autoindex",
"cache"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC"
}