forked from jwarby/i18n-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "i18n-lint",
"version": "0.0.1",
"description": "Lint HTML and template source files for hardcoded (untranslated) strings",
"homepage": "https://jwarby.github.io/i18n-lint",
"private": true,
"preferGlobal": true,
"directories": {
"man": "doc/man"
},
"bin": {
"i18n-lint": "./bin/i18n-lint"
},
"main": "lib/i18n-lint.js",
"scripts": {
"test": "./node_modules/.bin/jshint bin/ lib/ test/ && ./node_modules/.bin/mocha --recursive",
"coverage": "./node_modules/.bin/istanbul cover _mocha -- -R spec --recursive"
},
"author": {
"name": "James Warwood",
"email": "[email protected]",
"url": "https://github.com/jwarby"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/jwarby/i18n-lint"
},
"license": "MIT",
"bugs": "https://github.com/jwarby/i18n-lint/issues",
"dependencies": {
"chalk": "^1.0.0",
"commander": "^2.0.0",
"glob": "^5.0.0",
"htmlparser2": "^3.0.0",
"lodash": "^3.0.0",
"node.extend": "^1.0.0"
},
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.0.0",
"hooker": "^0.2.0",
"istanbul": "^0.3.0",
"jshint": "^2.0.0",
"mocha": "^2.0.0",
"mocha-lcov-reporter": "0.0.2",
"strip-ansi": "^3.0.0"
},
"keywords": [
"hardcoded",
"strings",
"i18n",
"translation",
"i18n-lint",
"lint",
"untranslated",
"detect"
],
"engines": {
"node": ">=0.8.0"
},
"config": {
"blanket": {
"pattern": [ "" ],
"data-cover-never": [ "node_modules", "tests" ]
}
}
}