forked from lelylan/simple-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.51 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": "2.2.1",
"description": "Node.js client for OAuth2",
"author": "Andrea Reginato <[email protected]>",
"contributors": [
"Jonathan Samines <[email protected]>"
],
"homepage": "https://github.com/lelylan/simple-oauth2",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/lelylan/simple-oauth2"
},
"engine": {
"node": ">=8.0"
},
"scripts": {
"pretest": "npm run lint",
"test": "nyc mocha",
"posttest": "nyc check-coverage",
"lint": "eslint .",
"fix": "eslint . --fix",
"test-watch": "mocha --watch --reporter=spec",
"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": {
"date-fns": "^1.3.0",
"debug": "^3.1.0",
"joi": "^13.0.2",
"wreck": "^14.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chance": "^1.0.13",
"chance-access-token": "^1.0.1",
"doctoc": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.9.0",
"lodash": "^4.17.5",
"mocha": "^5.0.1",
"nock": "^9.2.3",
"nyc": "^11.6.0"
},
"license": "Apache-2.0"
}