-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
47
48
49
50
51
{
"dependencies": {
"axios": "^0.21.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"extend": "^3.0.0",
"passport": "^0.3.2",
"pg": "~7.0.0",
"phantom": "^2.1.21",
"q": "^1.4.1",
"querystring": "^0.2.0",
"request": "^2.75.0",
"request-promise": "^4.1.1"
},
"config": {
"port": 9333
},
"description": "GT4",
"devDependencies": {
"eslint": "^7.17.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0"
},
"engines": {
"node": "14.15.3"
},
"repository": {
"type": "git",
"url": "git://github.com/guyrotem/google-translate-server.git"
},
"main": "server.js",
"name": "google-translate-api",
"readme": "README.md",
"scripts": {
"simulation": "node test/start-mock.js",
"lint": "eslint scripts/ test/ && echo Lint passed.",
"test": "npm run lint && npm run test-ci",
"test-browser": "node test/browser/start.js",
"test-ci": "mocha test/spec/*.js",
"test-cov": "nyc mocha test/spec/*.js"
},
"license": "Apache-2.0",
"tags": [
"google",
"translate",
"free api",
"utility"
],
"version": "2.75.0"
}