forked from mongo-express/mongo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.77 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
{
"version": "0.35.0",
"author": "https://github.com/mongo-express",
"name": "mongo-express",
"description": "Web-based admin interface for MongoDB",
"keywords": [
"admin",
"administration",
"collection",
"database",
"GUI",
"interface",
"manage",
"manage-mongo",
"mongo",
"mongodb",
"phpmyadmin",
"UI",
"web-based"
],
"bin": {
"mongo-express": "./app.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mongo-express/mongo-express.git"
},
"dependencies": {
"async": "2.0.1",
"basic-auth-connect": "^1.0.0",
"body-parser": "1.15.2",
"busboy": "^0.2.13",
"cli-color": "^1.1.0",
"commander": "^2.9.0",
"consolidate": "^0.14.1",
"cookie-parser": "1.4.3",
"csurf": "1.9.0",
"errorhandler": "1.4.3",
"express": "4.14.0",
"express-session": "1.14.1",
"flat": "^2.0.1",
"gridfs-stream": "^1.1.1",
"json2csv": "^3.7.1",
"lodash.isplainobject": "^4.0.6",
"method-override": "2.3.6",
"mongodb": "2.2.9",
"morgan": "1.7.0",
"serve-favicon": "2.3.0",
"snyk": "1.19.1",
"swig": "1.4.2",
"underscore": "~1.8.0",
"update-notifier": "1.0.2"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "~3.9.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"mocha": "3.0.2",
"pre-commit": "1.1.3"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"start": "node app",
"test": "snyk test && npm run mocha && npm run lint",
"mocha": "mocha",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"pre-commit": [
"test"
],
"main": "./middleware",
"snyk": true
}