This repository was archived by the owner on Dec 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
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": "lacona-translate",
"version": "1.1.1",
"description": "Lacona Command for translating phrases via Google Translate",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf build lib",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laconalabs/lacona-translate.git"
},
"keywords": [
"lacona",
"translate"
],
"bugs": {
"url": "https://github.com/laconalabs/lacona-translate/issues"
},
"homepage": "https://github.com/laconalabs/lacona-translate",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"rimraf": "^2.5.3"
},
"dependencies": {
"elliptical": "^1.0.0",
"lacona-api": "^1.0.0",
"lacona-phrases": "^1.0.0",
"lodash": "^4.13.1"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-react-jsx"
]
},
"main": "lib/index.js",
"lacona": {
"title": "Google Translate",
"customPreferences": true,
"description": "Translate phrases and websites using Google Translate.",
"examples": [
"translate [我爱你](phrase) to [English](language)"
]
},
"author": "Brandon Horst <brandonhorst@gmail.com> (http://brandonhorst.me/)",
"license": "Apache-2.0"
}