-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "@celleb/auto-query",
"version": "2.0.0",
"description": "Restful query builder for mongodb with mongoose",
"main": "index.js",
"scripts": {
"build": "rm -rf dist/* && npx tsc && npm run package",
"build:watch": "rm -rf dist/* && npx tsc --watch",
"package": "node ./scripts/override-package.js",
"preversion": "npm run test",
"version": "npm run build && npm run package && git add .",
"postversion": "git push && git push --tags",
"test": "npx jest --runInBand",
"test:watch": "npx jest --runInBand --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Celleb/auto-query.git"
},
"keywords": [
"Query",
"builder",
"mongodb",
"mongoose",
"rest"
],
"author": "Jonas <celleb@mrcelleb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Celleb/auto-query/issues"
},
"homepage": "https://github.com/Celleb/auto-query#readme",
"dependencies": {
"@celleb/js-utils": "^1.2.0",
"mongoose": "^5.9.19"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/mongoose": "^5.7.27",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"jest": "^26.1.0",
"mongodb-memory-server": "^6.6.1",
"ts-jest": "^26.1.3",
"typescript": "^3.9.5"
}
}