-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
66 lines (66 loc) · 1.42 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
59
60
61
62
63
64
65
66
{
"name": "egg-passport",
"version": "2.1.1",
"description": "passport plugin for egg, base on passportjs",
"eggPlugin": {
"name": "passport",
"dependencies": [
"session"
]
},
"keywords": [
"egg",
"egg-plugin",
"eggPlugin",
"egg-passport",
"passport"
],
"files": [
"app",
"config",
"lib",
"app.js",
"index.d.ts"
],
"dependencies": {
"@types/passport": "^1.0.11",
"debug": "^3.1.0",
"passport": "^0.6.0"
},
"devDependencies": {
"autod": "^3.0.1",
"egg": "^2.0.0",
"egg-bin": "^4.3.7",
"egg-mock": "^3.14.0",
"egg-passport-github": "*",
"egg-passport-twitter": "*",
"egg-passport-weibo": "*",
"egg-ts-helper": "^1.14.0",
"eslint": "^4.13.1",
"eslint-config-egg": "^5.1.1",
"passport-localapikey": "^0.0.3",
"runscript": "^1.3.0",
"typescript": "^3.1.6"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint config test lib app *.js",
"ci": "npm run lint && npm run cov",
"autod": "autod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-passport.git"
},
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-passport#readme",
"author": "fengmk2",
"license": "MIT"
}