-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
42 lines (42 loc) · 921 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
38
39
40
41
42
{
"name": "koa-oauth-server",
"description": "OAuth provider for koa",
"version": "2.0.0",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*.js'"
},
"repository": {
"type": "git",
"url": "git://github.com/thomseddon/koa-oauth-server"
},
"keywords": [
"koa",
"oauth",
"oauth2"
],
"author": {
"name": "Thom Seddon",
"email": "thom@nightworld.com"
},
"license": "MIT",
"dependencies": {
"co": "^4.5.1",
"oauth2-server": "seegno-forks/node-oauth2-server#enhancement/refactor-project"
},
"devDependencies": {
"co-mocha": "^1.1.0",
"co-supertest": "0.0.8",
"jshint": "^2.8.0",
"koa": "^0.14.0",
"koa-bodyparser": "^1.4.1",
"mocha": "^2.0.1",
"should": "^4.4.1",
"sinon": "^1.14.1",
"supertest": "^0.15.0"
},
"engines": {
"node": ">=0.11"
}
}