-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.48 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
"name": "@kiot-communications/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"
],
"contributors": [
"Thom Seddon <[email protected]>",
"Lars F. Karlström <[email protected]>",
"Rui Marinho <[email protected]>",
"Tiago Ribeiro <[email protected]>",
"Michael Salinger <[email protected]>",
"Nuno Sousa",
"Max Truxa"
],
"main": "index.js",
"dependencies": {
"basic-auth": "1.1.0",
"bluebird": "3.5.0",
"lodash": "4.17.4",
"promisify-any": "2.0.1",
"statuses": "1.3.1",
"type-is": "1.6.15"
},
"devDependencies": {
"jshint": "2.9.4",
"mocha": "3.3.0",
"should": "11.2.1",
"sinon": "2.3.2"
},
"license": "MIT",
"engines": {
"node": ">=4.0"
},
"scripts": {
"pretest": "jshint --config ./.jshintrc lib test",
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*_test.js'",
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'test/**/*_test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oauthjs/node-oauth2-server.git"
},
"bugs": {
"url": "https://github.com/oauthjs/node-oauth2-server/issues"
},
"homepage": "https://github.com/oauthjs/node-oauth2-server#readme",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"author": ""
}