-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "random-access-file",
"version": "4.1.1",
"description": "Continuous reading or writing to a file using random offsets and lengths",
"main": "index.js",
"scripts": {
"test": "standard && brittle test/*.js"
},
"browser": "./browser.js",
"files": [
"index.js",
"browser.js"
],
"imports": {
"fs": {
"bare": "bare-fs",
"default": "fs"
},
"path": {
"bare": "bare-path",
"default": "path"
}
},
"dependencies": {
"random-access-storage": "^3.0.0"
},
"optionalDependencies": {
"bare-fs": "^3.0.2",
"bare-path": "^3.0.0",
"fs-native-extensions": "^1.3.1"
},
"devDependencies": {
"brittle": "^3.3.0",
"standard": "^17.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/random-access-storage/random-access-file.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/random-access-storage/random-access-file/issues"
},
"homepage": "https://github.com/random-access-storage/random-access-file"
}