forked from ryyppy/node-mount
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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": "mount",
"description": "Async mount / umount system devices",
"main": "./mount",
"os" : [ "linux", "darwin", "!win32" ],
"keywords": [
"mount",
"linux",
"device",
"async"
],
"version": "0.1.1",
"homepage": "https://github.com/hertzg/node-mount",
"bugs": "https://github.com/hertzg/node-mount/issues",
"repository": {
"type": "git",
"url": "git://github.com/hertzg/node-mount.git"
},
"engines": {
"node": ">=0.8.0"
},
"private": true,
"author": "George Kotchlamazashvili <georgedot@gmail.com>",
"contributors": [{
"name": "Justas Brazauskas",
"email": "brazauskasjustas@gmail.com"
}, {
"name": "Patrick Stapfer",
"email": "p.stapfer@deadlock.at",
"url": "http://www.deadlock.at"
}],
"license": "MIT",
"gypfile": true,
"readmeFilename": "README.md",
"dependencies": {},
"devDependencies": {
"mocha": "~1.18.2",
"chai": "~1.9.1",
"grunt": "~0.4.4",
"grunt-mocha-test": "~0.10.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-node-gyp": "~0.3.0",
"q": "~1.0.1"
}
}