-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "passport-fiware-oauth",
"version": "0.3.0",
"description": "FIWARE (OAuth) authentication strategies for Passport.",
"keywords": [
"passport",
"fiware",
"auth",
"authn",
"authentication",
"identity"
],
"repository": {
"type": "git",
"url": "git://github.com/conwetlab/passport-fiware-oauth.git"
},
"bugs": {
"url": "http://github.com/conwetlab/passport-fiware-oauth/issues"
},
"author": {
"name": "Aitor Magán",
"email": "[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib/passport-fiware-oauth",
"dependencies": {
"pkginfo": "0.3.x",
"passport-oauth": "^1.0.0",
"request": "^2.69.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"jasmine": "^3.1.0",
"istanbul": "0.4.x",
"coveralls": "^3.0.0",
"proxyquire": "^2.1.3"
},
"scripts": {
"test": "JASMINE_CONFIG_PATH=test/config/jasmine.json node_modules/.bin/istanbul cover --include-all-sources -x examples/**/*.js node_modules/.bin/jasmine"
},
"engines": {
"node": ">= 0.4.0"
}
}