-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1021 Bytes
/
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
{
"name": "i18n-js-simple",
"version": "0.1.0",
"description": "I18n for browser and environments Node.JS (easy to use, fast and no dependencies)",
"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-js.git"
},
"keywords": [
"i18n",
"i10n",
"translate",
"translation",
"translator",
"pluralization",
"simple"
],
"author": "Raphael F. Jesus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/raphaelfjesus/i18n-js/issues"
},
"homepage": "https://github.com/raphaelfjesus/i18n-js#readme",
"engines": {
"node": ">=4.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.1",
"istanbul": "^0.4.2",
"messageformat": "^0.3.1",
"mocha": "^2.4.5",
"should": "^8.2.2",
"sprintf-js": "^1.0.3"
}
}