forked from smazanek/markdown-translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "markdown-translator",
"version": "0.0.1",
"description": "Directly translate markdown file using AWS Translate API",
"main": "index.js",
"scripts": {
"test": "echo \"No test in temp\"",
"dist:mac": "pkg package.json --targets node8-macos-x64",
"dist:win": "pkg package.json --targets node8-win-x64"
},
"bin": {
"md-translator": "./cli.js"
},
"pkg": {
"assets": "config.json"
},
"dependencies": {
"aws-sdk": "^2.874.0",
"commander": "^8.0.0",
"lodash.chunk": "^4.2.0",
"lodash.flatten": "^4.4.0",
"lodash.merge": "^4.6.1",
"remark": "^13.0.0",
"request": "^2.88.0",
"unified-stream": "^1.0.4"
},
"keywords": [
"AWS",
"Markdown",
"Translate",
"CLI"
],
"author": "lpiedade <https://github.com/lpiedade>",
"repository": {
"type": "git",
"url": "git+https://github.com/lpiedade/markdown-translator.git"
},
"homepage": "https://github.com/lpiedade/markdown-translator#readme",
"bugs": {
"url": "https://github.com/lpiedade/markdown-translator/issues"
},
"license": "MIT",
"devDependencies": {
"pkg": "5.3.0"
}
}