-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 883 Bytes
/
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
{
"name": "inbatches",
"version": "0.0.11",
"private": false,
"license": "MIT",
"repository": {
"url": "https://github.com/onhate/inbatches.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"batch operations",
"batch",
"typescript",
"decorator",
"javascript",
"isomorphic",
"batches",
"performance",
"loader",
"dataloader",
"graphql"
],
"scripts": {
"build": "tsc --project tsconfig-build.json",
"prebuild": "npx rimraf dist",
"prepublish": "npm run build",
"lint": "eslint \"{src}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"devDependencies": {
"@types/jest": "^29.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
}
}