-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
82 lines (82 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "quickmongo",
"version": "5.2.0",
"description": "Quick Mongodb wrapper for beginners that provides key-value based interface.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"docs": "typedoc --json docs/typedoc.json src/index.ts && node scripts/docgen.js",
"dev": "cd test && ts-node demo.ts",
"build": "tsup",
"build:check": "tsc --noEmit --incremental false",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml} __tests__/**/*.{ts,js,json,yaml,yml}",
"prepare": "husky install",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plexidev/quickmongo.git"
},
"keywords": [
"quickmongo",
"mongodb",
"mongoose",
"schema",
"api",
"database",
"quick.db",
"enmap",
"endb"
],
"author": "Plexi Development <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/plexidev/quickmongo/issues"
},
"homepage": "https://github.com/plexidev/quickmongo#readme",
"contributors": [
"Archaeopteryx1 <[email protected]>",
"Zyrouge <[email protected]>",
"DevSynth <[email protected]>",
"Zorotic <[email protected]>"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@discordjs/ts-docgen": "^0.4.1",
"@shelf/jest-mongodb": "^2.0.3",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.178",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"jsdoc-babel": "^0.5.0",
"prettier": "^2.3.2",
"quick.db": "^9.0.6",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"tsup": "^5.11.11",
"typedoc": "^0.23.14",
"typescript": "^4.4.2"
},
"dependencies": {
"lodash": "^4.17.21",
"mongoose": "^6.6.1",
"tiny-typed-emitter": "^2.1.0"
}
}