-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "oauth2orize-device-code",
"version": "0.1.0",
"description": "Extensions to support device flow with OAuth2orize.",
"keywords": [
"oauth",
"oauth2",
"device",
"iot"
],
"author": {
"name": "Jared Hanson",
"email": "jaredhanson@gmail.com",
"url": "http://www.jaredhanson.net/"
},
"contributors": [
{
"name": "Samuel Judson",
"url": "https://www.sjudson.com/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/jaredhanson/oauth2orize-device-code.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/oauth2orize-device-code/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"utils-merge": "^1.0.0"
},
"devDependencies": {
"make-node": "^0.3.0",
"mocha": "^2.0.0",
"chai": "^3.0.0",
"chai-connect-middleware": "^0.3.1",
"chai-oauth2orize-grant": "^0.3.0"
},
"scripts": {
"test": "node_modules/.bin/mocha test/*.test.js"
}
}