-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 877 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 877 Bytes
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
{
"name": "async-iterable-buffer",
"version": "1.1.0",
"description": "",
"main": "./dist/index.js",
"types": "./src/index.ts",
"scripts": {
"build": "tsc --build",
"test": "jest --verbose tests/unit",
"test:coverage": "jest --collect-coverage tests/unit",
"lint": "eslint .",
"prepare": "npm run build",
"preversion": "npm test"
},
"author": "@snatalenko",
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}