forked from lelylan/simple-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
63
64
65
66
{
"name": "simple-oauth2",
"version": "3.4.0",
"description": "Node.js client for OAuth2",
"author": "Andrea Reginato <[email protected]>",
"contributors": [
"Jonathan Samines <[email protected]>"
],
"license": "Apache-2.0",
"homepage": "https://github.com/lelylan/simple-oauth2",
"main": "index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/lelylan/simple-oauth2"
},
"engine": {
"node": ">=8"
},
"scripts": {
"pretest": "npm run lint",
"test": "nyc ava",
"lint": "eslint .",
"docs-gen": "doctoc README.md --github --no-title",
"clean-install": "rm -rf node_modules && npm install"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text-summary"
]
},
"keywords": [
"oauth2",
"authorization",
"password",
"client",
"credentials"
],
"dependencies": {
"@hapi/hoek": "^8.5.0",
"@hapi/joi": "^16.1.8",
"@hapi/wreck": "^15.1.0",
"date-fns": "^2.9.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@hapi/boom": "^8.0.1",
"ava": "^3.1.0",
"chance": "^1.1.4",
"chance-access-token": "^2.0.0",
"doctoc": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"nock": "^11.7.2",
"nyc": "^15.0.0"
}
}