-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
34 lines (34 loc) · 1020 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
{
"name": "angular-gettext-cli",
"version": "1.1.2",
"description": "A command line interface for angular gettools",
"bin": {
"angular-gettext-cli": "bin/gettext"
},
"scripts": {
"test": "bash acceptance-test.sh",
"example-extract": "./bin/gettext --files 'example/*.+(html|js)' --dest example/dist/extract.pot --marker-names 'i18n, __' --attributes 'custom-i18n'",
"example-compile": "./bin/gettext --compile --files 'example/*.po' --dest example/dist/compiled.js --module gettext-test"
},
"repository": {
"type": "git",
"url": "https://github.com/huston007/angular-gettext-cli.git"
},
"keywords": [
"Angular",
"gettext",
"i18n",
"translation"
],
"author": "Andrey Skladchikov",
"license": "MIT",
"bugs": {
"url": "https://github.com/huston007/angular-gettext-cli/issues"
},
"homepage": "https://github.com/huston007/angular-gettext-cli",
"dependencies": {
"angular-gettext-tools": "^2",
"glob": "^7.1",
"minimist": "^1.2"
}
}