This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 273
/
package.json
74 lines (74 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@ibm-watson/tone-analyzer-nodejs",
"private": true,
"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"
},
"engines": {
"node": ">=12"
},
"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-jest",
"test-jest": "jest test",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"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",
"i18n": "^0.8.4",
"ibm-watson": "^5.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.2",
"codecov": "^3.6.1",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"semantic-release": "^15.13.30",
"semantic-release-docker": "^2.2.0",
"supertest": "^4.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node"
}
}