-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
{
"name": "heroku-bouncer",
"version": "5.0.0",
"description": "heroku bouncer middleware for express",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/jclem/node-heroku-bouncer"
},
"author": "Jonathan Clem",
"license": "MIT",
"bugs": {
"url": "https://github.com/jclem/node-heroku-bouncer/issues"
},
"homepage": "https://github.com/jclem/node-heroku-bouncer",
"dependencies": {
"oauth": "~0.9.11",
"express": "~4.16.3",
"heroku-client": "^1.6.0",
"bluebird": "^2.2.2",
"request": "^2.85.0",
"simple-encryptor": "^1.0.2"
},
"devDependencies": {
"client-sessions": "^0.6.0",
"cookie-parser": "^1.4.3",
"mocha": "~1.18.2",
"should": "~3.2.0-beta1",
"tough-cookie": "^2.3.4",
"bluebird": "^2.2.2",
"body-parser": "^1.4.3",
"node-uuid": "^1.4.1"
},
"jshintConfig": {
"eqeqeq": true,
"forin": true,
"globalstrict": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"quotmark": "single",
"strict": true,
"trailing": true,
"undef": true,
"unused": true,
"globals": {
"afterEach": false,
"before": false,
"beforeEach": false,
"context": false,
"describe": false,
"exports": false,
"it": false,
"module": false,
"process": false,
"require": false
}
}
}