-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "express-restify-mongoose",
"version": "9.0.5",
"description": "Easily create a flexible REST interface for mongoose models",
"keywords": [
"ReST",
"express",
"restify",
"mongodb",
"mongoose",
"model"
],
"homepage": "http://florianholzapfel.github.io/express-restify-mongoose/",
"bugs": {
"url": "https://github.com/florianholzapfel/express-restify-mongoose/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/florianholzapfel/express-restify-mongoose.git"
},
"license": "MIT",
"author": {
"name": "Florian Holzapfel",
"email": "flo.holzapfel@gmail.com"
},
"main": "./dist/express-restify-mongoose.js",
"files": [
"dist/"
],
"scripts": {
"build": "run-p build:*",
"build:cjs": "swc src --config module.type=commonjs --out-dir dist",
"build:dts": "tsup src/express-restify-mongoose.ts --dts-only",
"lint": "eslint . --ext .js,.ts",
"test": "run-s test:*",
"test:express": "mocha -R spec ./test/express.mjs --timeout 10s",
"test:filter": "mocha -R spec ./test/integration/resource_filter.mjs --timeout 10s",
"test:restify": "mocha -R spec ./test/restify.mjs --timeout 10s",
"test:unit": "mocha -R spec ./test/unit.mjs",
"tsc": "tsc --noEmit"
},
"dependencies": {
"dot-prop": "^6.0.0",
"lodash.isplainobject": "~4.0.6",
"mongoose": "^8.2.1",
"serialize-error": "^8.1.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.17",
"@swc/register": "^0.1.10",
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"body-parser": "^1.19.0",
"esbuild": "^0.15.12",
"eslint": "^8.25.0",
"eslint-plugin-mocha": "10.3.0",
"express": "^4.17.1",
"method-override": "^3.0.0",
"mocha": "^10.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"request": "^2.88.2",
"restify": "^4.3.4",
"sinon": "^14.0.1",
"tsup": "^6.3.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16"
}
}