forked from ortoo/oauth2orize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
56
57
58
{
"name": "oauth2orize-koa",
"version": "1.3.2",
"description": "OAuth 2.0 authorization server toolkit for Node.js.",
"keywords": [
"oauth",
"oauth2",
"auth",
"authz",
"authorization",
"passport",
"middleware",
"koa"
],
"author": {
"name": "James Sharp",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/ortoo/oauth2orize.git"
},
"bugs": {
"url": "http://github.com/ortoo/oauth2orize/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"debug": "2.x.x",
"koa-compose": "^3.0.0",
"uid2": "0.0.x",
"utils-merge": "1.x.x"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-preset-es2015-node5": "^1.1.1",
"babel-preset-stage-3": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "1.x.x",
"eslint": "^1.10.3",
"mocha": "2.x.x"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"version": "node_modules/.bin/babel src --out-dir lib",
"postversion": "git push && git push --tags",
"pretest": "node_modules/.bin/babel src --out-dir lib",
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js"
}
}