This repository has been archived by the owner on Sep 27, 2020. It is now read-only.
forked from ghaiklor/passport-google-plus-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "passport-google-plus-token",
"version": "0.0.0-semantic-release",
"description": "Passport strategy for authenticating with Google Plus via OAuth2 access tokens",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublish": "npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/passport-google-plus-token.git"
},
"keywords": [
"passport",
"google",
"plus",
"token",
"auth",
"authentication"
],
"author": {
"name": "Eugene Obrezkov",
"email": "ghaiklor@gmail.com",
"url": "https://github.com/ghaiklor"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ghaiklor/passport-google-plus-token/issues"
},
"homepage": "https://github.com/ghaiklor/passport-google-plus-token",
"dependencies": {
"passport-oauth": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-plugin-add-module-exports": "0.3.0-pre",
"babel-preset-es2015": "6.24.0",
"chai": "3.5.0",
"chai-passport-strategy": "1.0.1",
"coveralls": "3.0.1",
"cz-conventional-changelog": "2.1.0",
"isparta": "4.0.0",
"mocha": "5.2.0",
"semantic-release": "15.5.1",
"sinon": "5.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
}
}