-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
64
65
66
67
68
69
70
{
"name": "readlines-iconv",
"version": "2.1.1",
"description": "Handler that returns a file line by line with a wide range of supported encodings",
"module": "ES2020",
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"clean": "rm -rf dist/",
"prebuild": "yarn run clean",
"prepublish": "yarn run build",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:tsc",
"test:unit": "jest --config ./test/jest-unit.config.cjs",
"lint:eslint": "eslint --cache --cache-strategy content ./src/**/* ",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:prettier": "npx prettier --check \"**/*.{xml,json,yml,yaml}\"",
"lint:prettier:fix": "npx prettier --write \"**/*.{xml,json,yml,yaml}\"",
"lint:tsc": "tsc --noEmit",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SheepCreativeSoftware/readlines-iconv.git"
},
"keywords": [
"readline",
"line",
"readfile",
"linebyline",
"sync",
"async",
"promises",
"iconv",
"encoding"
],
"author": "Marina Egner",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"bugs": {
"url": "https://github.com/SheepCreativeSoftware/readlines-iconv/issues"
},
"homepage": "https://github.com/SheepCreativeSoftware/readlines-iconv#readme",
"dependencies": {
"iconv-lite": "^0.6.3"
},
"devDependencies": {
"husky": "^9.1.4",
"@swc/core": "^1.7.6",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"assert": "^2.1.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
}
}