-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "mattermost-proxy",
"version": "1.0.0-beta.2",
"description": "Proxy for handling Mattermost authentication",
"keywords": [
"mattermost",
"proxy",
"auth",
"oidc",
"cookie"
],
"repository": {
"type": "git",
"url": "https://github.com/droguljic/mattermost-proxy"
},
"main": "lib/index.js",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"axios": "^0.16.1",
"boom": "^5.1.0",
"bunyan": "^1.8.10",
"co": "^4.6.0",
"config": "^1.26.1",
"cookie": "^0.3.1",
"form-data": "^2.1.4",
"http-proxy": "^1.16.2",
"iron": "^4.0.5",
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1",
"map-obj": "^2.0.0",
"minimatch": "^3.0.4",
"mongodb": "^2.2.27",
"openid-client": "^1.11.0",
"valid-url": "^1.0.9",
"verror": "^1.10.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"nodemon": "^1.11.0"
},
"scripts": {
"start": "export NODE_ENV=development && nodemon lib/index.js | bunyan -o short",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Daniel Roguljic <droguljic@extensionengine.com>",
"license": "Apache-2.0"
}