-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "m.static",
"version": "2.2.0",
"description": "m(icro)static is a lightweight static file server for node.js written in es6+",
"main": "index.js",
"bin": {
"m.static": "bin/m.static"
},
"config": {
"port": 8080,
"defaultFile": "index.html",
"errorFile": "404.html"
},
"devDependencies": {
"m.test": "0.0.57",
"pem": "^1.12.3",
"standard": "^11.0.0"
},
"standard": {
"globals": [
"test"
]
},
"scripts": {
"node": "node",
"pretest": "standard",
"test": "m.test",
"coverage": "node --require ./node_modules/m.test/global.js ./node_modules/istanbul/lib/cli.js cover --print detail test",
"start": "node bin/m.static $@"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivoputzer/m.static.git"
},
"keywords": [
"static",
"file",
"server",
"http",
"https",
"assets",
"development",
"m.icro"
],
"author": "Ivo von Putzer Reibegg <ivo.putzer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivoputzer/m.static/issues"
},
"homepage": "https://github.com/ivoputzer/m.static#readme",
"dependencies": {},
"optionalDependencies": {
"istanbul": "^0.4.5"
}
}