-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 996 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
42
43
{
"name": "fs-rest-api",
"version": "1.0.0",
"description": "An Express app for exposing the node filesystem as a simplified API",
"homepage": "https://github.com/a-axton/fs-rest-api",
"repository": {
"type": "git",
"url": "https://github.com/a-axton/fs-rest-api.git"
},
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "apidoc -i ./lib -o ./docs",
"dev": "nodemon server/server.js"
},
"author": "Andy Axton",
"license": "ISC",
"apidoc": {
"title": "Node Filesystem Rest API",
"url": "https://your.server.com",
"order": [
"Tree",
"Stat",
"Read",
"Write",
"Append",
"Rename",
"Move",
"Remove"
]
},
"dependencies": {
"body-parser": "^1.15.2",
"dir-to-json": "0.0.3",
"errno": "^0.1.4",
"express": "^4.14.0",
"fs-promise": "^1.0.0"
},
"devDependencies": {
"apidoc": "^0.16.1",
"nodemon": "^1.11.0"
}
}