-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@flex-development/mango",
"description": "MongoDB query plugin and repository API for in-memory object collections",
"version": "5.1.0",
"keywords": [
"in-memory",
"in-memory-database",
"mingo",
"mongodb",
"mongodb-query-language",
"mongodb-url-query",
"qs-to-mongo",
"repository-pattern",
"typescript"
],
"homepage": "https://github.com/flex-development/mango",
"repository": "git://github.com/flex-development/mango.git",
"bugs": {
"url": "https://github.com/flex-development/mango/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"author": {
"name": "Lexus Drumgold",
"email": "[email protected]",
"url": "https://flexdevelopment.llc"
},
"publishConfig": {
"access": "public",
"directory": "./dist",
"registry": "https://npm.pkg.github.com"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf node_modules || true",
"postinstall": "husky-run install",
"format": "prettier --write \"./\"",
"lint": "eslint . --ext js,ts --fix --cache",
"test": "zsh scripts/jest.sh",
"compile": "zsh scripts/compile.sh",
"release": "zsh scripts/release.sh",
"release:github": "node scripts/js/release-github"
},
"dependencies": {
"@flex-development/exceptions": "2.0.0",
"@flex-development/tutils": "3.1.0",
"@types/debug": "4.1.5",
"@types/lodash.isboolean": "3.0.6",
"@types/lodash.isempty": "4.4.6",
"@types/lodash.merge": "4.6.6",
"@types/lodash.uniq": "4.5.6",
"@types/node": "15.3.1",
"@types/qs": "6.9.6",
"@types/uuid": "8.3.0",
"class-transformer": "0.4.0",
"class-transformer-validator": "0.9.1",
"class-validator": "0.13.1",
"debug": "4.3.1",
"lodash.isboolean": "3.0.3",
"lodash.isempty": "4.4.0",
"lodash.merge": "4.6.2",
"lodash.uniq": "4.5.0",
"mingo": "4.1.2",
"qs-to-mongo": "2.0.0",
"reflect-metadata": "0.1.13",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@commitlint/format": "latest",
"@types/faker": "latest",
"@types/jest": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@zerollup/ts-transform-paths": "latest",
"axios": "latest",
"dequal": "latest",
"dotenv-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-spellcheck": "latest",
"eslint-plugin-tree-shaking": "latest",
"faker": "latest",
"husky": "4.3.8",
"jest": "next",
"jest-extended": "latest",
"lint-staged": "latest",
"npm": "latest",
"npm-run-all": "latest",
"prettier": "2.2.1",
"replace-in-file": "latest",
"standard-version": "latest",
"ts-jest": "27.0.0-next.9",
"ts-node": "latest",
"ttypescript": "latest",
"typescript": "4.2.4",
"underscore-cli": "latest",
"yarn": "latest"
},
"peerDependencies": {},
"peerDependenciesMeta": {},
"resolutions": {},
"release": {
"allowBranch": "main"
},
"required-env": []
}