forked from hertzg/node-mount
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.33 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nodeos-mount",
"description": "Async mount / umount system devices",
"main": "./mount",
"os": [
"linux",
"darwin",
"!win32"
],
"keywords": [
"mount",
"linux",
"device",
"async"
],
"version": "0.3.2",
"homepage": "https://github.com/NodeOS/nodeos-mount",
"bugs": "https://github.com/NodeOS/nodeos-mount/issues",
"repository": {
"type": "git",
"url": "git://github.com/NodeOS/nodeos-mount.git"
},
"engines": {
"node": ">= 4"
},
"author": "George Kotchlamazashvili <[email protected]>",
"contributors": [
{
"name": "Justas Brazauskas",
"email": "[email protected]"
},
{
"name": "Patrick Stapfer",
"email": "[email protected]",
"url": "http://www.deadlock.at"
},
{
"name": "Jesús Leganés Combarro 'piranna'",
"email": "[email protected]",
"url": "http://pirannafs.blogspot.com"
}
],
"scripts": {
"test": "grunt test"
},
"license": "MIT",
"gypfile": true,
"readmeFilename": "README.md",
"dependencies": {
"async": "^2.5.0",
"nan": "^2.6.2"
},
"devDependencies": {
"mocha": "~3.5.0",
"chai": "~4.1.1",
"grunt": "~1.0.1",
"grunt-mocha-test": "~0.13.2",
"grunt-contrib-watch": "~1.0.0",
"grunt-node-gyp": "~4.0.0",
"q": "~1.5.0"
}
}