-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "i18n-node-simple",
"version": "1.0.0",
"description": "Library for internationalization of applications developed in Node.JS. (Less than 150 lines of code)",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.js",
"coverage": "istanbul cover _mocha -- -R spec ./test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raphaelfjesus/i18n-node.git"
},
"keywords": [
"i18n",
"i10n",
"translate",
"translation",
"translator",
"pluralization",
"gender",
"simple",
"i18n-express",
"i18n-node"
],
"author": "Raphael F. Jesus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/raphaelfjesus/i18n-node/issues"
},
"homepage": "https://github.com/raphaelfjesus/i18n-node#readme",
"engines": {
"node": ">=4.1.1"
},
"dependencies": {
"i18n-js-simple": "^0.1.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.1",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"express-session": "^1.13.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"should": "^8.2.2",
"sprintf-js": "^1.0.3",
"supertest": "^1.2.0"
}
}