-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 840 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 840 Bytes
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
{
"name": "fastfile",
"type": "module",
"version": "0.0.20",
"description": "fast cached read write of big binary files",
"main": "./build/main.cjs",
"module": "./src/fastfile.js",
"exports": {
"import": "./src/fastfile.js",
"require": "./build/main.cjs"
},
"scripts": {
"pretest": "eslint .",
"test": "mocha",
"build": "rollup -c rollup.cjs.config.js"
},
"keywords": [
"file",
"io",
"large",
"binary",
"cache",
"random"
],
"author": "0kims",
"license": "GPL-3.0",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/iden3/fastfile.git"
},
"devDependencies": {
"eslint": "^8.17.0",
"ffjavascript": "^0.3.0",
"mocha": "^10.0.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"rollup": "^2.20.0"
}
}