-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
54
55
56
{
"name": "chunkreader2",
"version": "1.1.7",
"description": "Asynchronous, buffered, chunk-by-chunk file reader with customizable buffer size on Node.js.",
"url": "https://github.com/aldipermanaetikaputra/chunkreader2",
"keywords": [
"chunk",
"reader",
"chunk-reader",
"file",
"buffer",
"stream"
],
"author": "Aldi Permana Etika Putra <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldipermanaetikaputra/chunkreader2/issues"
},
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"lint": "eslint . --ext .ts",
"version": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/aldipermanaetikaputra/chunkreader2.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"async-mutex": "^0.4.0",
"denque": "^2.1.0",
"typedfastbitset": "^0.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"tmp": "^0.2.1",
"ts-jest": "^29.0.5",
"typescript": "4.9.5"
}
}