-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
57
58
59
{
"name": "linecounter2",
"version": "1.1.4",
"description": "⚡ Fastest and memory-efficient async file line counter with customizable buffer size and separator on Node.js.",
"url": "https://github.com/aldipermanaetikaputra/linecounter2",
"keywords": [
"line",
"counter",
"line-counter",
"chunk",
"reader",
"file",
"buffer",
"stream"
],
"author": "Aldi Permana Etika Putra <aldipermanaetikaputra@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aldipermanaetikaputra/linecounter2/issues"
},
"files": [
"lib"
],
"main": "lib/index.js",
"bin": "lib/cli.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/linecounter2.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"linereader2": "^1.2.1",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/minimist": "^1.2.2",
"@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"
}
}