-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
43 lines (43 loc) · 1.17 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
{
"author": "Kenan Shifflett <kenan.shifflett@gmail.com>",
"contributors": [
"Peng Zuo <> (https://github.com/nan1nan1)",
"Juga Paazmaya <paazmaya@yahoo.com> (https://github.com/paazmaya)",
"Ariel Jakobovits <> (https://github.com/arieljake)",
"sorinsarca <> (https://github.com/sorinsarca)",
"Andrii Dieiev <> (https://github.com/IllusionMH)"
],
"name": "mstranslator",
"description": "Microsoft Translator API module for node.js",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git://github.com/nanek/mstranslator.git"
},
"main": "mstranslator.js",
"scripts": {
"doc": "documentation build mstranslator.js -f md > API.md",
"test": "mocha test/api.test.js",
"style": "prettier --write --single-quote mstranslator.js && eslint mstranslator.js"
},
"engines": {
"node": ">=0.4.7"
},
"dependencies": {},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.19.0",
"mocha": "3.4.1",
"prettier": "1.3.1",
"underscore": "1.8.3"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nanek/mstranslator/blob/master/LICENSE-MIT"
}
],
"files": [
"mstranslator.js"
]
}