-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 850 Bytes
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 850 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
37
38
39
{
"name": "prototype-server",
"preferGlobal": "true",
"version": "0.3.0",
"author": "bobbor <bobbor.pap@gmail.com>",
"description": "a simple file server that can be infinitely extended using hooks",
"bin": {
"prototype-server": "./bin/server"
},
"scripts": {
"start": "node ./bin/server"
},
"main": "./src/server",
"repository": {
"type": "git",
"url": "https://github.com/bobbor/prototype-server.git"
},
"keywords": [
"server",
"prototype",
"hooks",
"express",
"handlebars"
],
"dependencies": {
"colors": "*",
"express": ">3.0.0",
"mime": ">=1.2.9",
"underscore": ">=1.4.4",
"consolidate": "^0.10.0",
"handlebars": "^2.0.0-alpha.1",
"user-agent-parser": "^0.6.0",
"async": "^0.2.10"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}