-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·56 lines (56 loc) · 1.2 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
{
"name": "passport-adobe-oauth2",
"version": "1.0.1",
"description": "Adobe OAuth 2.0 authentication strategy for Passport.",
"keywords": [
"passport",
"adobe",
"oauth2",
"auth",
"authentication",
"identity"
],
"repository": {
"type": "git",
"url": "https://github.com/adobe/passport-adobe-oauth2"
},
"bugs": {
"url": "https://github.com/adobe/passport-adobe-oauth2/issues"
},
"contributors": [
{
"name": "Dragos Dascalita Haut",
"url": "https://github.com/ddragosd"
},
{
"name": "Audrey So",
"url": "https://github.com/audreyeso"
},
{
"name": "Caryn Tran",
"url": "https://github.com/carynbear"
},
{
"name": "Jesse MacFadyen",
"url": "https://github.com/purplecabbage"
}
],
"license": "Apache-2.0",
"main": "./lib/passport-adobe-oauth2",
"dependencies": {
"passport-oauth": "1.0.x",
"pkginfo": "0.2.x"
},
"devDependencies": {
"eslint": "^4.18.1",
"jasmine": "^2.8.0"
},
"scripts": {
"test": "npm run jasmine",
"jasmine": "jasmine",
"eslint": "eslint lib & eslint --ignore-path .gitignore example/"
},
"engines": {
"node": ">= 0.4.0"
}
}