-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 987 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
45
46
47
{
"name": "gulp-static-i18n",
"version": "1.0.1",
"description": "Gulp plugin to translate static assets.",
"license": "MIT",
"repository": "yola/gulp-static-i18n",
"author": {
"name": "Yola Engineering",
"email": "[email protected]",
"url": "https://github.com/yola"
},
"engines": {
"node": ">=14.21.3"
},
"scripts": {
"lint": "jshint lib test index.js",
"test": "npm run-script lint && mocha"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"gulpplugin",
"i18n",
"internationalization",
"translation"
],
"dependencies": {
"del": "1.2.1",
"gettext-parser": "~7.0.0",
"lodash": "~4.17.21",
"plugin-error": "~2.0.1",
"through2": "~4.0.0",
"vinyl": "~3.0.0",
"vinyl-fs": "~3.0.3"
},
"devDependencies": {
"chai": "~4.3.7",
"clone": "~2.1.0",
"gulp": "~4.0.2",
"jsgreat": "~0.1.7",
"jshint": "~2.11.0",
"mocha": "~10.2.0",
"should": "~13.2.3"
}
}