forked from watson-developer-cloud/tone-analyzer-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
52
53
54
55
56
57
{
"name": "tone-analyzer-nodejs",
"version": "4.0.0",
"description": "Web application that uses Tone Analyzer to get the tone from a text message",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/tone-analyzer-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "James Zhang",
"email": "[email protected]"
},
{
"name": "Eva Xiaohui Luo",
"email": "[email protected]"
},
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/tone-analyzer-nodejs/issues"
},
"scripts": {
"start": "node server.js",
"test": "npm run lint && npm run test-unit",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha test/unit",
"test-integration": "istanbul cover ./node_modules/mocha/bin/_mocha test/integration",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"dependencies": {
"body-parser": "^1.17.2",
"cf-deployment-tracker-client": "^0.x",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"eslint": "^3.10.1",
"express": "^4.15.4",
"express-rate-limit": "^2.9.0",
"express-secure-only": "^0.2.1",
"helmet": "^3.8.1",
"i18n": "^0.8.3",
"watson-developer-cloud": "^2.39.0"
},
"devDependencies": {
"codecov": "^2.3.0",
"eslint": "^4.6.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"supertest": "^3.0.0"
}
}