forked from iamtraction/google-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 830 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
{
"name": "@iamtraction/google-translate",
"version": "2.0.0",
"description": "A Node.JS library to consume Google Translate API for free.",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"test:lint": "eslint .",
"test": "npm run test:lint",
"start": "node ."
},
"repository": "https://github.com/iamtraction/google-translate",
"keywords": [
"google translate api",
"google translate",
"google api",
"translate api",
"google",
"translate",
"api"
],
"author": "Sankarsan Kampa (iamtraction)",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"undici": "^5.11.0"
},
"devDependencies": {
"eslint": "^8.25.0"
}
}