-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "query-bouncer-mongoose-plugin",
"version": "1.9.1",
"description": "Mongoose Plugin for Query Bouncer",
"main": "./dist/index.js",
"scripts": {
"start": "node ./dist/index.js",
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/nyc mocha",
"build": "./node_modules/.bin/tsc --watch false --declaration",
"lint": "./node_modules/.bin/eslint --ignore-path .gitignore .",
"tsc": "./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/relief-melone/query-bouncer-mongoose-plugin"
},
"author": "Relief.Melone",
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"express": "^4.17.1",
"mongodb": "^3.5.0",
"mongoose": "^5.8.7"
},
"devDependencies": {
"@sinonjs/referee-sinon": "^8.0.0",
"@types/chai": "latest",
"@types/express": "^4.17.2",
"@types/mocha": "latest",
"@types/mongodb": "^3.3.14",
"@types/mongoose": "^5.5.41",
"@types/moxios": "^0.4.9",
"@types/node": "latest",
"@types/sinon": "^9.0.9",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"axios-mock-adapter": "^1.17.0",
"chai": "latest",
"chai-exclude": "^2.0.2",
"eslint": "latest",
"eslint-import-resolver-alias": "latest",
"eslint-plugin-import": "latest",
"mocha": "^7.1.1",
"mongodb-memory-server": "^6.5.0",
"nyc": "latest",
"sinon": "^8.1.1",
"typescript": "latest"
},
"files": [
"dist"
]
}