forked from gcasro/fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "@gcas/fuse",
"version": "2.4.2",
"description": "Fuse API bindings for NodeJS that aim to be feature complete and cross-platform (Linux, Windows, MacOSX).",
"author": "Valeriu Paloș (@vpalos)",
"contributors": [
"Mathias Buus (@mafintosh)"
],
"license": "MIT",
"homepage": "https://github.com/gcasro/fuse",
"repository": {
"type": "git",
"url": "git+https://github.com/gcasro/fuse.git"
},
"bugs": {
"url": "https://github.com/gcasro/fuse/issues"
},
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"bin": {
"fuse": "./bin.js"
},
"scripts": {
"test": "tape test/*.js",
"configure": "node-gyp configure",
"build": "node-gyp rebuild"
},
"dependencies": {
"nanoresource": "^1.3.0",
"napi-macros": "^2.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"bindings": "^1.5.0",
"concat-stream": "^2.0.0",
"prettier": "^3.0.3",
"standard": "^13.1.0",
"tape": "^4.12.0"
},
"engines": {
"node": ">=18.15.0"
},
"prettier": {
"singleQuote": false,
"semi": true,
"useTabs": false,
"tabWidth": 4,
"printWidth": 140,
"trailingComma": "es5"
}
}