-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 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
49
50
51
52
53
{
"name": "gulp-potomo-js",
"version": "1.0.1",
"description": "A Gulp plugin to compile .po files into binary .mo files written in JavaScript only.",
"main": "index.js",
"scripts": {
"test": "eslint ."
},
"files": [
"index.js"
],
"keywords": [
"gulp",
"gulpplugin",
"i18n",
"translation",
"potomo",
"po",
"mo",
"pot",
"gettext",
"gettext-parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wunderfarm/gulp-potomo-js.git"
},
"bugs": {
"url": "https://github.com/wunderfarm/gulp-potomo-js/issues"
},
"homepage": "https://github.com/wunderfarm/gulp-potomo-js#readme",
"author": {
"name": "wunderfarm",
"email": "[email protected]",
"url": "www.wunderfarm.com"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.3.0",
"fancy-log": "^1.3.2",
"gettext-parser": "^1.3.0",
"plugin-error": "^1.0.1",
"plur": "^2.1.2",
"through2-concurrent": "^1.1.1"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-plugin-node": "^6.0.0"
}
}