This repository has been archived by the owner on Jul 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "oauth2-client-shell",
"version": "0.1.0",
"description": "OAuth2 client where you provide the client credentials to test the 3-legged authorization flow.",
"main": "server.js",
"scripts": {
"dev": "grunt",
"start": "node src/server.js",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neverendingqs/oauth2-client-shell.git"
},
"keywords": [
"oauth2",
"3-legged",
"authorization"
],
"author": "neverendingqs",
"license": "MIT",
"bugs": {
"url": "https://github.com/neverendingqs/oauth2-client-shell/issues"
},
"homepage": "https://github.com/neverendingqs/oauth2-client-shell#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"csprng": "^0.1.2",
"csurf": "^1.10.0",
"ejs": "^2.7.1",
"express": "^4.17.1",
"superagent": "^5.1.0",
"x-frame-options": "^1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-mocha-test": "^0.13.3",
"grunt-nodemon": "^0.4.2",
"lodash": "^4.17.15",
"mocha": "^6.2.1",
"nock": "^10.0.6",
"nodemon": "^1.19.3",
"openssl-self-signed-certificate": "^1.1.6",
"supertest": "^4.0.2",
"supertest-as-promised": "^4.0.2"
}
}