-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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
69
70
71
{
"name": "gulp-l10n",
"version": "1.2.1",
"description": "Parse and collect localizable strings from html.",
"main": "index.js",
"dependencies": {
"gulp-util": "^3.0.6",
"s18n": "^2.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"async": "^1.4.0",
"coveralls": "^2.11.3",
"cz-conventional-changelog": "^1.1.5",
"del": "^2.2.0",
"ghooks": "^1.2.1",
"gulp": "^3.9.0",
"gulp-if": "^2.0.0",
"gulp-istanbul-enforcer": "^1.0.3",
"gulp-jshint": "^2.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-mocha": "^2.1.3",
"gulp-shell": "^0.5.2",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"jshint-stylish": "^2.0.1",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "1.2.0",
"pre-commit": "^1.0.10",
"run-sequence": "^1.1.2",
"stream-assert": "^2.0.2",
"validate-commit-msg": "^2.6.1"
},
"scripts": {
"test": "gulp test",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bitjson/gulp-l10n.git"
},
"keywords": [
"localize",
"l10n",
"translate",
"i18n",
"s18n",
"gulp-s18n",
"internationalization",
"gulpplugin"
],
"author": "Jason Dreyzehner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitjson/gulp-l10n/issues"
},
"homepage": "https://github.com/bitjson/gulp-l10n",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"helpMessage": "\nThis project uses commitizen to document changes. Please try:\nnpm install commitizen -g && git cz\n"
}
},
"pre-commit": "test"
}