-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.4 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.4 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@query-easy/mongo",
"version": "1.0.3",
"description": "A query builder for MongoDB, built to provide a rich and dynamic query building interface.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "rimraf dist/__tests__",
"clean": "rimraf dist coverage .nyc_output",
"coveralls": "npm run test && nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint \"lib/**/*.ts\"",
"eslint:fix": "npm run lint -- --fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prepublish": "npm run build",
"prettier": "prettier \"lib/**/*.ts\" -c",
"prettier:fix": "prettier \"lib/**/*.ts\" -w",
"test": "nyc ts-mocha lib/__tests__/**/*.test.ts"
},
"dependencies": {
"kindof": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"mongodb": "*",
"mongoose": "*"
},
"peerDependenciesMeta": {
"mongodb": {
"optional": true
},
"mongoose": {
"optional": true
}
},
"pre-commit": [
"build",
"test",
"lint"
],
"precommit.silent": true,
"repository": "git://github.com/query-easy/mongo.git",
"homepage": "https://github.com/query-easy/mongo",
"author": "Akash Kansara (https://github.com/akash-kansara)",
"contributors": [],
"engines": {
"node": ">=10"
},
"keywords": [
"mongo",
"mongodb",
"query",
"mongo query",
"mongo query builder",
"query-easy",
"query builder"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/query-easy/mongo/issues"
},
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
}
}