forked from mashpie/i18n-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "i18n",
"description": "lightweight translation module with dynamic json storage",
"version": "0.8.3",
"homepage": "http://github.com/mashpie/i18n-node",
"repository": {
"type": "git",
"url": "http://github.com/mashpie/i18n-node.git"
},
"author": "Marcus Spiegel <[email protected]>",
"main": "./index",
"keywords": [
"template",
"i18n",
"l10n"
],
"directories": {
"lib": "."
},
"dependencies": {
"debug": "*",
"make-plural": "^4.0.1",
"math-interval-parser": "^2.0.0",
"messageformat": "^1.0.2",
"mustache": "*",
"sprintf-js": ">=1.1.1"
},
"devDependencies": {
"async": "*",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"jshint": "*",
"mocha": "*",
"should": "*",
"sinon": "*",
"url": "^0.11.0",
"zombie": "*"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"jshint": "jshint --verbose .",
"test": "npm run jshint && make test",
"test-ci": "npm run jshint && istanbul cover ./node_modules/mocha/bin/_mocha"
},
"license": "MIT"
}