forked from mashpie/i18n-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 920 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
42
43
44
{
"name": "i18n",
"description": "lightweight translation module with dynamic json storage",
"version": "0.6.0",
"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": {
"sprintf": ">=0.1.1",
"mustache": "*",
"debug": "*"
},
"devDependencies": {
"mocha": ">=1.8.1",
"should": ">=1.2.1",
"express": " < 4.0.0",
"zombie": "<2.0.0",
"async": "*",
"hbs": "*",
"jade": "^1.3.1",
"consolidate": "*",
"restify": "*",
"jshint": "*"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"jshint": "jshint --verbose .",
"test": "npm run jshint && make test"
}
}