forked from alexander-girsh/fuse-bindings
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "node-fuse-bindings",
"version": "2.12.3",
"description": "libfuse2 bindings for Node >=13 aims to cover the entire FUSE api",
"main": "index.js",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "npm run tape && standard",
"tape": "tape test/*.js",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --all --strip --verbose",
"prebuildify": "prebuildify -a --strip",
"prebuildify-ia32": "prebuildify -a --strip --arch=ia32",
"build-debug": "node-gyp build --debug"
},
"gypfile": true,
"dependencies": {
"nan": "^2.14.0",
"node-gyp": "^6.0.1",
"node-gyp-build": "^4.2.0",
"prebuild-install": "^5.3.3",
"xtend": "^4.0.2"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"prebuild": "^9.1.1",
"prebuildify": "^3.0.4",
"standard": "^14.3.1",
"tape": "^4.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/direktspeed/node-fuse-bindings.git"
},
"author": "Frank Lemanschik <[email protected]>",
"contributors": [
{
"name": "Mathias Buus",
"email": "@mafintosh",
"url": "https://github.com/mafintosh"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/direktspeed/node-fuse-bindings/issues"
},
"typings": "./index.d.ts",
"homepage": "https://github.com/direktspeed/node-fuse-bindings"
}