-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "localdrive",
"version": "1.12.1",
"description": "File system interoperable with Hyperdrive",
"main": "index.js",
"files": [
"index.js",
"streams.js"
],
"imports": {
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"fs/*": {
"bare": "bare-fs/*",
"default": "fs/*"
},
"path": {
"bare": "bare-path",
"default": "path"
}
},
"scripts": {
"test": "standard && brittle test/*.js && brittle test/*.js --relative-tmp-dir",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/holepunchto/localdrive.git"
},
"author": "Lucas Barrena (@LuKks)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/localdrive/issues"
},
"homepage": "https://github.com/holepunchto/localdrive",
"dependencies": {
"b4a": "^1.6.1",
"mirror-drive": "^1.2.0",
"mutexify": "^1.4.0",
"streamx": "^2.12.5",
"unix-path-resolve": "^1.0.2"
},
"devDependencies": {
"brittle": "^3.1.0",
"standard": "^17.0.0"
},
"optionalDependencies": {
"bare-fs": "^3.0.2",
"bare-path": "^3.0.0"
}
}