-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "@booljs/oauth2",
"version": "0.3.2",
"description": "OAuth2 middleware for BoolJS",
"main": "index.js",
"scripts": {
"pretest": "eslint \"**/*\".js",
"test": "cross-env NODE_ENV=test mocha --exit test/_.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booljs/booljs-oauth2.git"
},
"keywords": [
"BoolJS",
"OAuth2"
],
"author": "Pablo Andrés Dorado Suárez <hola@pablodorado.com>",
"license": "GPL-3.0",
"homepage": "https://github.com/booljs/booljs-oauth2#readme",
"bugs": {
"url": "https://github.com/booljs/booljs-oauth2/issues"
},
"peerDependencies": {
"@booljs/api": "^0.6.3",
"oauth2orize": "^1.11.0",
"@booljs/passport": "^0.3.0",
"@booljs/express": "^0.7.2",
"passport-oauth2-client-password": "^0.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.0.1",
"supertest": "^3.4.2"
},
"publishConfig": {
"access": "public"
}
}