-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 893 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
{
"name": "ghost-theme-translator",
"shortname": "gtt",
"version": "1.0.2",
"description": "CLI tool for automatically parse translatable strings in Ghost theme and generate language file.",
"main": "index.js",
"bin": {
"ghost-theme-translator": "bin/ghost-theme-translator",
"gtt": "bin/ghost-theme-translator"
},
"scripts": {
"postinstall": "node ./src/postinstall.js"
},
"keywords": [
"ghost-theme-translator",
"ghost",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/biswajit-saha/ghost-theme-translator"
},
"bugs": {
"url": "https://github.com/biswajit-saha/ghost-theme-translator/issues"
},
"author": {
"name": "Biswajit Saha"
},
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"cli-cursor": "^3.1.0",
"commander": "^4.1.0",
"recursive-readdir-async": "^1.1.6"
}
}