-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "gulp-ziey-i18n",
"version": "1.1.2",
"description": "gulp i18n tool by zem",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"keywords": [
"gulp",
"ziey",
"i18n"
],
"author": {
"name": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^7.6.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"husky": "^2.1.0",
"lint-staged": "^8.1.5",
"mocha": "^2.3.3",
"should": "^7.0.2"
},
"directories": {
"test": "test"
},
"dependencies": {
"ansi-colors": "^3.2.4",
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"vinyl": "^2.2.0",
"ziey-gettext": "^0.7.1",
"ziey-utils": "^0.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/zemzheng/gulp-ziey-i18n.git"
},
"bugs": {
"url": "https://github.com/zemzheng/gulp-ziey-i18n/issues"
},
"readmeFilename": "README",
"husky": {
"hooks": {
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"linters": {
"./**/*.js": "eslint --fix"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}