-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "@dmxdev/mongoose-batch-write",
"version": "1.1.0",
"description": "Writing data in mongoose in batch",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint \"src/**/*.{js,ts}\" --fix",
"prettier": "prettier --write \"src/**/*.ts\"",
"test:coverage": "jest --coverage"
},
"files": [
"dist/**/*",
"README.md"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"Mongoose",
"Typescript",
"Nodejs",
"Function"
],
"author": "dmxdev",
"license": "MIT",
"dependencies": {
"mongoose": "^8.9.2",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/mongoose": "^5.11.96",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"directories": {
"test": "test"
}
}