This repository was archived by the owner on Jun 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 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
54
{
"name": "language-translator-demo",
"version": "0.3.10",
"description": "A sample nodejs app for the IBM Cloud that use the Language Translator service",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"express-secure-only": "^0.2.1",
"helmet": "^3.21.2",
"ibm-watson": "^5.1.0",
"jade": "~1.11.0",
"morgan": "^1.9.1"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git://github.com/watson-developer-cloud/language-translator-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "germanatt@us.ibm.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/language-translator-nodejs/issues"
},
"scripts": {
"start": "node server.js",
"codecov": "npm run test && (codecov || true)",
"validate": "npm ls",
"lint": "eslint .",
"test-unit": "nyc mocha",
"test": "npm run lint && npm run test-unit"
},
"devDependencies": {
"codecov": "^3.6.1",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}