-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
{
"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.18.2",
"dotenv": "~5.0.0",
"ejs": "^2.5.7",
"express": "~4.16.2",
"express-rate-limit": "~2.11.0",
"express-secure-only": "^0.2.1",
"extend": "~3.0.1",
"helmet": "~3.10.0",
"jade": "~1.11.0",
"morgan": "~1.9.0",
"watson-developer-cloud": "~3.0.6"
},
"engines": {
"node": ">=6.0",
"npm": ">=3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/language-translator-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/language-translator-nodejs/issues"
},
"scripts": {
"start": "node app.js",
"validate": "npm ls",
"lint": "eslint .",
"test": "npm run lint"
},
"devDependencies": {
"eslint": "^4.17.0"
}
}