-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 KB
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
60
61
62
63
{
"name": "@dwesley/linereader",
"version": "0.1.0",
"description": "A simple `Readliner` class, similar to Java's `readline()` method, written in typescript (for Node) to read files line-by-line asynchronously and quickly.",
"author": {
"name": "David Wesley",
"email": "contato.dwesley@outlook.com",
"url": "https://github.com/DavidWesley"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavidWesley/linereader.git"
},
"categories": [
"Other"
],
"keywords": [
"line",
"readline",
"readliner",
"linereader",
"line-reader",
"line-by-line",
"asynchronous",
"asynchronously",
"stream",
"EOF"
],
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": ["dist"],
"engines": {
"node": ">= 18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint",
"lint:fix": "eslint . --ext .js,.ts --fix",
"lint:all": "eslint src --ext .js,.ts --max-warnings=0 --fix",
"prepare": "husky install",
"prepublish": "tsup"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@tsconfig/strictest": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DavidWesley/linereader/issues"
},
"homepage": "https://github.com/DavidWesley/linereader#readme"
}