-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.24 KB
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
{
"name": "mongofuse",
"version": "0.10.1",
"description": "A FUSE filesystem, powered by MongoDB and written in Node.js. Mostly an exercise for me to learn MongoDB and Node.js. It aims towards POSIX functionality for use as a regular filesystem.",
"main": "index.js",
"bin": {
"mongofuse": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"jsdoc": "jsdoc -d jsdoc -R README.md .",
"start": "node index.js",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/davidknoll/mongofuse.git"
},
"keywords": [
"fuse",
"mongodb",
"filesystem",
"learning"
],
"author": "David Knoll <david@davidknoll.me.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidknoll/mongofuse/issues"
},
"homepage": "https://github.com/davidknoll/mongofuse#readme",
"dependencies": {
"async": "^1.5.2",
"fuse-bindings": "^2.11.2",
"mongojs": "^2.6.0",
"posix": "^4.1.2",
"yargs": "^4.7.1"
},
"devDependencies": {
"flow-bin": "^0.77.0",
"jsdoc": "^3.5.5",
"publish-please": "^3.2.0"
}
}