-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.35 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
60
61
62
63
{
"name": "quickreader",
"version": "0.4.0",
"description": "a high-performance stream reader",
"repository": {
"type": "git",
"url": "https://github.com/EtherDream/QuickReader.git"
},
"author": "EtherDream",
"license": "MIT",
"keywords": [
"reader",
"stream",
"await",
"async"
],
"type": "module",
"exports": {
".": {
"types": "./typings/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "typings/index.d.ts",
"files": [
"dist/",
"src/",
"typings/index.d.ts"
],
"scripts": {
"lint": "eslint src tests",
"test": "jest",
"dev": "tsc -w",
"build": "npm run lint && tsc && npm run test && tsd"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.5.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.18.1",
"jest": "^29.5.0",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.0",
"tsd": "^0.28.1",
"typescript": "^5.0.4"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"tests/**/*.ts",
"!tests/performance/**"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}