forked from lelylan/simple-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "simple-oauth2",
"version": "1.5.0",
"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": ">=4.0"
},
"scripts": {
"pretest": "npm run lint",
"test": "mocha ",
"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"
},
"dependencies": {
"bluebird": "^3.5.0",
"date-fns": "^1.3.0",
"debug": "^3.1.0",
"joi": "^12.0.0",
"request": "^2.81.0"
},
"devDependencies": {
"chai": "^4.1.2",
"doctoc": "^1.0.0",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^4.0.1",
"nock": "^9.0.13"
},
"license": "Apache-2.0"
}