forked from oauthjs/node-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "oauth2-server",
"description": "Complete, framework-agnostic, compliant and well tested module for implementing an OAuth2 Server in node.js",
"version": "3.0.0-b2",
"keywords": [
"oauth",
"oauth2"
],
"author": {
"name": "Thom Seddon",
"email": "thom@seddonmedia.co.uk"
},
"main": "index.js",
"dependencies": {
"basic-auth": "^1.0.0",
"bluebird": "^2.9.13",
"camel-case": "^1.1.1",
"lodash": "^3.3.1",
"standard-http-error": "^1.1.0",
"type-is": "^1.6.0",
"validator.js": "^1.1.1"
},
"devDependencies": {
"jshint": "^2.9.1",
"mocha": "^2.2.1",
"should": "^5.0.1",
"sinon": "^1.13.0"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=0.8"
},
"scripts": {
"pretest": "./node_modules/.bin/jshint --config ./.jshintrc lib test",
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/thomseddon/node-oauth2-server.git"
}
}