forked from simov/grant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "grant",
"version": "4.2.2",
"description": "OAuth Middleware for Express, Koa and Hapi",
"keywords": [
"oauth",
"oauth2",
"openid",
"openid-connect",
"authentication",
"authorization",
"middleware",
"express",
"koa",
"hapi"
],
"license": "MIT",
"homepage": "https://github.com/simov/grant",
"author": "Simeon Velichkov <simeonvelichkov@gmail.com> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/simov/grant.git"
},
"dependencies": {
"qs": "^6.6.0",
"request-compose": "^1.0.0",
"request-oauth": "0.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"coveralls": "^3.0.2",
"express": "^4.16.4",
"express-session": "^1.15.6",
"hapi": "~16.3.0",
"istanbul": "^1.1.0-alpha.1",
"koa": "^1.6.2",
"koa-bodyparser": "^2.5.0",
"koa-convert": "^1.2.0",
"koa-mount": "^1.3.1",
"koa-qs": "^2.0.0",
"koa-session": "^4.8.0",
"mocha": "^5.2.0",
"request-cookie": "0.0.2",
"request-logs": "0.0.5",
"yar": "^8.1.2"
},
"main": "./build/index.js",
"files": [
"build/config/",
"build/lib/",
"build/grant.js",
"build/index.js",
"build/package.json",
"config/",
"lib/",
"grant.js",
"index.js",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"test": "npm run test:ci",
"test:ci": "v=$(node -e \"console.log(process.version.split('.')[0].slice(1))\") && if [ $v -ge 8 ]; then p=\"test\"; else p=\"build/test\"; fi && mocha $p --recursive",
"test:cov": "istanbul cover _mocha -- --recursive",
"build": "./build.sh",
"prepublish": "npm run build"
},
"engines": {
"node": ">=4.0.0"
}
}