-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
48 lines (48 loc) · 1.03 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": "static-i18n",
"version": "0.2.10",
"description": "Utility to translate static HTML files.",
"main": "lib/index.js",
"bin": {
"static-i18n": "bin/static-i18n.js"
},
"scripts": {
"test": "mocha",
"coverage": "nyc mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/claudetech/node-static-i18n"
},
"keywords": [
"html",
"i18n",
"internationalization"
],
"author": "Daniel Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/claudetech/node-static-i18n/issues"
},
"homepage": "https://github.com/claudetech/node-static-i18n",
"devDependencies": {
"eslint": "^4.17.0",
"expect.js": "^0.3.1",
"nyc": "^11.4.1",
"tmp": "^0.0.33"
},
"dependencies": {
"bluebird": "^3.5.1",
"cheerio": "^0.22.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"i18next": "^11.2.3",
"js-yaml": "^3.10.0",
"lodash": "^4.17.5",
"minimist": "^1.1.0",
"mocha": "^5.0.1"
},
"prettier": {
"singleQuote": true
}
}