-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "koa-i18n",
"version": "2.1.0",
"description": "Lightweight simple translation middleware for koa, based on i18n-2",
"main": "index.js",
"scripts": {
"test": "mocha --require should --reporter spec --timeout 5000 test",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -R dot -t 5000 test/*.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R dot -t 5000 test/*.js"
},
"repository": "koa-modules/koa-i18n",
"keywords": [
"koa",
"locale",
"i18n",
"languages"
],
"author": "Fangdun Cai <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "*",
"i18n-2": "*"
},
"devDependencies": {
"istanbul": "^0.4.5",
"koa": "^2.2.0",
"koa-compose": "^3.2.1",
"koa-convert": "^1.2.0",
"koa-locale": "^1.3.0",
"koa-swig": "^2.2.1",
"koa-views": "^6.0.1",
"mocha": "^3.2.0",
"pug": "^2.0.0-beta11",
"should": "^11.2.1",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=7"
},
"files": [
"LICENSE",
"index.js"
]
}