forked from seegno-forks/node-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 861 Bytes
/
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
{
"name": "oauth2-server",
"description": "Complete, framework-agnostic, compliant and well tested module for implementing an OAuth2 Server in node.js",
"version": "3.0.0",
"keywords": [
"oauth",
"oauth2"
],
"author": {
"name": "Thom Seddon",
"email": "[email protected]"
},
"main": "index.js",
"dependencies": {
"basic-auth": "^2.0.1",
"bluebird": "^3.7.2",
"lodash": "^4.17.20",
"standard-http-error": "^2.0.1",
"type-is": "^1.6.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"should": "^13.2.3",
"sinon": "^19.0.2"
},
"license": "MIT",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/thomseddon/node-oauth2-server.git"
}
}