-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.44 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.44 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
{
"name": "browser-line-reader",
"version": "0.3.1",
"description": "A line by line async file reader for the browser",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "husky install && npm run build"
},
"engines": {
"node": ">= 12.22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stanrogo/browser-line-reader.git"
},
"keywords": [
"npm",
"file reader",
"browser",
"line reader",
"file",
"javascript"
],
"author": "Stanley Clark <me@stanrogo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stanrogo/browser-line-reader/issues"
},
"homepage": "https://github.com/stanrogo/browser-line-reader#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"ls-engines": "^0.9.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "./tests/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "jsdom"
}
}