This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "oauth_reverse_proxy",
"description": "An OAuth 1.0a authenticating proxy and reverse proxy to add authentication to APIs",
"version": "1.5.10",
"author": "Ryan Breen <[email protected]> (https://github.com/ryanbreen)",
"contributors": [
"Calvin Leung Huang <[email protected]> (https://github.com/cleung2010)",
"Norm MacLennann <[email protected]> (https://github.com/maclennann)",
"Theodore X. Pak <[email protected]> (https://github.com/theopak)",
"Justin Karimi <[email protected]> (https://github.com/jekhokie)"
],
"license": "Apache-2.0",
"homepage": "https://github.com/Cimpress-MCP/oauth_reverse_proxy",
"repository": {
"type": "git",
"url": "git://github.com/Cimpress-MCP/oauth_reverse_proxy.git"
},
"keywords": [
"authentication",
"auth",
"oauth",
"token",
"access",
"service",
"api"
],
"engines": {
"node": ">= 0.12.7"
},
"scripts": {
"test": "bash -c 'mocha --reporter spec -t 10000 ./test | bunyan; exit ${PIPESTATUS[0]}'",
"cov": "`npm bin`/istanbul cover --root . -x node_modules -x test --dir ./reports `npm bin`/_mocha -- --reporter spec -t 10000 test | bunyan",
"coveralls": "npm run cov && node_modules/coveralls/bin/coveralls.js < reports/lcov.info"
},
"dependencies": {
"body-parser": "1.14.0",
"bunyan": "1.5.1",
"connect": "3.4.0",
"http-proxy": "1.11.2",
"mkdirp": "0.5.0",
"node-uuid": "1.4.3",
"qs": "5.1.0",
"underscore": "1.8.3"
},
"devDependencies": {
"benchmark": "^1.0.0",
"compression": "^1.5.2",
"coveralls": "^2.11.2",
"express": "^4.13.3",
"grunt": "^0.4.5",
"grunt-benchmark": "^0.3.0",
"grunt-cli": "^0.1.13",
"grunt-coveralls": "^1.0.0",
"grunt-env": "^0.4.4",
"grunt-nodemon": "^0.4.0",
"istanbul": "^0.3.20",
"method-override": "^2.3.5",
"mocha": "^2.3.2",
"multer": "^1.0.3",
"oauth": "^0.9.13",
"request": "^2.61.0",
"rimraf": "~2.2.8",
"should": "^7.1.0",
"xunit-file": "^0.0.7"
}
}