-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 805 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 805 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
{
"name": "cute-files",
"version": "1.0.2",
"description": "Turn any folder on your computer into a cute file browser, available on the local network.",
"main": "cute-files.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cute",
"file",
"browser",
"files"
],
"repository": {
"type": "git",
"url": "https://github.com/martinaglv/cute-files"
},
"author": {
"name": "Martin Angelov",
"email": "martin@tutorialzine.com"
},
"license": "MIT",
"dependencies": {
"commander": "^2.3.0",
"content-disposition": "^0.3.0",
"express": "^4.9.4"
},
"preferGlobal": true,
"bin": {
"cute-files": "cute-files.js"
},
"readmeFilename": "Readme.md",
"engines": {
"node": ">= 0.10.x"
}
}