-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "@nerjs/batchloader",
"version": "2.1.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --runInBand"
},
"repository": "git@github.com:nerjs/batchloader.git",
"author": "nerjs <nerjs.stap@gmail.com>",
"license": "MIT",
"keywords": [
"batches",
"dataloader",
"deduplicate",
"async",
"Promise",
"timeout",
"cache"
],
"files": [
"dist"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/debug": "^4.1.13",
"@types/eslint__js": "^9.14.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.4.2",
"jest-watch-typeahead": "^3.0.1",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2"
},
"dependencies": {
"debug": "^4.4.3"
}
}