-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "i18n-express",
"version": "1.1.2",
"description": "A simple i18n middleware for Express.js.",
"main": "index.js",
"scripts": {
"pretest": "npm install",
"check:style": "eslint .",
"test": "_mocha -- $npm_package_config_mocha && npm run check:style && npm run test:coverage",
"test:coverage:run": "istanbul cover _mocha -- $npm_package_config_mocha",
"test:coverage:check": "istanbul check-coverage --functions 80",
"test:coverage": "npm run test:coverage:run && npm run test:coverage:check"
},
"devDependencies": {
"mocha": "^3.1.2",
"istanbul": "^0.4.0",
"semistandard": "^9.1.0",
"eslint": "^3.8.0",
"eslint-config-standard": "^6.2.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/koalazak/i18n-express.git"
},
"keywords": [
"i18n",
"express",
"middleware",
"json",
"internationalisation",
"node",
"session",
"language",
"lang",
"cookies",
"javascript",
"js",
"handlebars",
"ejs"
],
"author": "koalazak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koalazak/i18n-express/issues"
},
"homepage": "https://github.com/koalazak/i18n-express"
}