-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "egg-passport-dingtalk",
"version": "1.0.1",
"description": "dingtalk passport plugin for egg",
"eggPlugin": {
"name": "passportDingtalk",
"dependencies": [
"passport"
]
},
"egg": {
"typescript": true
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"egg-passport",
"passport-dingtalk"
],
"dependencies": {
"debug": "^4.1.1",
"nunjucks": "^3.2.0"
},
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/debug": "^4.1.4",
"@types/mocha": "^5.1.0",
"@types/node": "^9.6.5",
"@types/nunjucks": "^3.1.1",
"@types/supertest": "^2.0.7",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg": "^2.16.0",
"egg-bin": "^4.11.0",
"egg-ci": "^1.11.0",
"egg-mock": "^3.21.0",
"egg-passport": "^2.0.1",
"egg-ts-helper": "^1.6.0",
"rimraf": "^2.6.3",
"supertest": "^3.0.0",
"tslib": "^1.10.0",
"tslint": "^5.9.1",
"tslint-config-egg": "^1.0.0",
"typescript": "^3.5.2"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test -r egg-ts-helper/register",
"cov": "egg-bin cov -r egg-ts-helper/register",
"lint": "tslint .",
"ci": "npm run cov",
"autod": "autod",
"ts": "rimraf app/**/*.js lib/**/*.js && ets && tsc",
"prepublish": "npm run ts",
"postpublish": "node scripts/published.js"
},
"typings": "index.d.ts",
"files": [
"app/**/*.js",
"app/**/*.d.ts",
"config/**/*.js",
"config/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.html",
"typings/**/*.d.ts",
"app.js",
"app.d.js",
"index.d.ts"
],
"ci": {
"type": "travis",
"os": {
"travis": "linux"
},
"version": "8, 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs-community/egg-passport-dingtalk.git"
},
"bugs": {
"url": "https://github.com/eggjs-community/egg-passport-dingtalk/issues"
},
"homepage": "https://github.com/eggjs-community/egg-passport-dingtalk#readme",
"author": "xiekw2010",
"license": "MIT"
}