forked from mongo-express/mongo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.67 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
{
"version": "0.30.59",
"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.0-rc.3",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.14.2",
"busboy": "^0.2.13",
"cli-color": "^1.1.0",
"commander": "^2.9.0",
"consolidate": "^0.14.1",
"cookie-parser": "1.4.1",
"csurf": "^1.8.3",
"errorhandler": "1.4.3",
"express": "4.13.4",
"express-session": "1.13.0",
"gridfs-stream": "^1.1.1",
"method-override": "2.3.5",
"mongodb": "^2.1.18",
"morgan": "1.7.0",
"serve-favicon": "2.3.0",
"snyk": "^1.14.2",
"swig": "1.4.2",
"underscore": "~1.8.0",
"update-notifier": "^0.6.3"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "2.4.5",
"pre-commit": "^1.1.2"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"license": "MIT",
"scripts": {
"jshint": "jshint -c .jshintrc --exclude-path .jshintignore .",
"jscs": "jscs .",
"start": "node app",
"test": "snyk test && ./node_modules/mocha/bin/mocha",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"pre-commit": [
"jshint",
"jscs",
"test"
],
"main": "./middleware",
"snyk": true
}