-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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": "@booljs/passport",
"version": "0.3.0",
"description": "Middleware to connect Passport.js with Bool.js and a RouteMiddleware to authenticate API users through Auth Strategies.",
"main": "lib/index.js",
"scripts": {
"pretest": "eslint \"**/*.js\"",
"test": "cross-env NODE_ENV=test mocha --exit --timeout 10000 test/_.js test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booljs/booljs-passport.git"
},
"keywords": [
"booljs",
"passportjs",
"auth",
"middleware"
],
"author": "Pablo Andrés Dorado Suárez <pandres95@booljs.co>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/booljs/booljs-passport/issues"
},
"homepage": "https://github.com/booljs/booljs-passport#readme",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"peerDependencies": {
"passport": "^0.4.0",
"@booljs/api": "0.6.x",
"@booljs/express": "^0.7.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"node-uuid": "^1.4.8",
"passport-http-bearer": "^1.0.1",
"supertest": "^3.3.0",
"supertest-as-promised": "^4.0.2"
},
"publishConfig": {
"access": "public"
}
}