forked from Concorda/seneca-github-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (56 loc) · 1.28 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
{
"name": "seneca-github-auth",
"version": "0.1.1",
"description": "github auth plugin for seneca-auth",
"main": "github-auth.js",
"scripts": {
"test": "mocha test --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-github-auth.git"
},
"keywords": [
"seneca",
"oauth",
"auth",
"github",
"plugin"
],
"author": "Nicolas Herment <[email protected]>",
"contributors": [
{
"name": "Mircea Alexandru",
"email":"[email protected]",
"url" : "https://github.com/mirceaalexandru"
},
{
"name": "Kristina Matuleviciute",
"email":"[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/senecajs/seneca-github-auth/issues"
},
"scripts": {
"lint": "lab test -dL",
"annotate": "docco github-auth.js -o doc"
},
"homepage": "https://github.com/senecajs/seneca-github-auth",
"dependencies": {
"passport-github": "1.1.0",
"lodash": "~4.2.1"
},
"devDependencies": {
"docco": "0.7.0",
"eslint-config-seneca": "1.x.x",
"eslint-plugin-standard": "1.x.x",
"eslint-plugin-hapi": "4.x.x",
"lab": "8.2.0"
},
"peerDependencies": {
"seneca-auth": "*",
"seneca": "*"
}
}