-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 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
64
65
66
{
"name": "mongoose-sorter",
"version": "0.0.1",
"description": "A small helper library for generating dynamic sort pipeline.✌ ",
"keywords": [
"sorter",
"mongoose sorter",
"mongodb sorter",
"express sorter",
"dynamic sorter"
],
"homepage": "",
"bugs": {},
"repository": {
"type": "git",
"url": "[email protected]:arizworld/mongoose-sorter.git"
},
"license": "UNLICENSED",
"author": {
"name": "Aritra Sadhukhan",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint './**/*.{js,ts}' --quiet",
"lint:fix": "eslint './**/*.{js,ts}' --quiet --fix",
"lint:windows": "eslint ./**/*.{js,ts} --quiet",
"lint:windows:fix": "eslint ./**/*.{js,ts} --quiet --fix",
"test": "jest --detectOpenHandles --no-cache --ci --verbose --forceExit"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/node_modules/**"
],
"coverageReporters": [
"text"
],
"preset": "ts-jest",
"setupFilesAfterEnv": [
"./src/test/setup.ts"
],
"testEnvironment": "node",
"testTimeout": 600000
},
"dependencies": {
"mongoose": "6.4.6"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.7.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}