-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "hapi-google-id-token",
"version": "1.0.0",
"description": "Allows authentication using a Google ID Token",
"main": "lib/index.js",
"scripts": {
"test": "istanbul cover ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js",
"quick": "./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js",
"jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwalser/hapi-google-id-token.git"
},
"keywords": [
"oauth",
"google",
"plus",
"identity",
"hapi",
"authentication"
],
"author": "Wesley Walser",
"license": "MIT",
"bugs": {
"url": "https://github.com/wwalser/hapi-google-id-token/issues"
},
"homepage": "https://github.com/wwalser/hapi-google-id-token#readme",
"dependencies": {
"boom": "^3.2.1",
"cookie": "^0.3.1",
"hoek": "^4.0.1",
"joi": "^8.4.2",
"jsonwebtoken": "^7.0.1",
"request": "^2.72.0"
},
"devDependencies": {
"hapi": "^13.4.1",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
}
}