forked from eggjs/egg-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.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
{
"name": "egg-i18n",
"version": "2.0.0",
"eggPlugin": {
"name": "i18n"
},
"description": "i18n plugin for egg",
"main": "index.js",
"scripts": {
"lint": "eslint lib test *.js",
"test": "npm run lint && egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov",
"autod": "autod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-i18n.git"
},
"keywords": [
"egg",
"i18n"
],
"author": "gxcsoccer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg-i18n/issues"
},
"homepage": "https://github.com/eggjs/egg-i18n#readme",
"engines": {
"node": ">= 8.0.0"
},
"files": [
"app",
"config",
"app.js"
],
"ci": {
"version": "8, 9"
},
"dependencies": {
"debug": "^3.1.0",
"koa-locales": "^1.7.0"
},
"devDependencies": {
"autod": "^2.10.1",
"egg": "next",
"egg-bin": "^4.3.5",
"egg-ci": "^1.8.0",
"egg-mock": "^3.13.1",
"egg-view-nunjucks": "^2.1.4",
"eslint": "^4.10.0",
"eslint-config-egg": "^5.1.1",
"pedding": "^1.1.0"
}
}