-
Notifications
You must be signed in to change notification settings - Fork 669
/
package.json
125 lines (125 loc) · 3.68 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "ibm-watson",
"version": "9.1.0",
"description": "Client library to use the IBM Watson Services",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/node-sdk.git"
},
"keywords": [
"assistant",
"compare comply",
"discovery",
"ibm",
"natural language classifier",
"natural language understanding",
"personality insights",
"speech to text",
"text to speech",
"tone analyzer",
"tone_analyzer",
"visual recognition",
"watson developer cloud",
"watson",
"wdc"
],
"author": "IBM Corp.",
"contributors": [
{
"name": "German Attanasio Ruiz",
"email": "germanatt@us.ibm.com"
},
{
"name": "Nathan Friedly",
"email": "nfriedly@us.ibm.com"
},
{
"name": "Jeff Stylos",
"email": "jsstylos@us.ibm.com"
},
{
"name": "Dustin Popp",
"email": "dustinpopp@ibm.com"
},
{
"name": "Angelo Paparazzi",
"email": "angelo.paparazzi@ibm.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/node-sdk/issues"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"axios": "^0.21.4",
"codecov": "^3.8.1",
"concat-stream": "^2.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"installed-check": "^3.0.0",
"jest": "^28.1.3",
"jsdoc": "^3.6.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"semantic-release": "^17.3.1",
"snyk": "^1.437.3",
"tsc-publish": "^0.5.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.8",
"typescript": "^4.9.4",
"wav": "~1.0.2"
},
"dependencies": {
"@types/async": "^3.2.5",
"@types/extend": "^3.0.1",
"@types/isstream": "^0.1.0",
"@types/node": "^13.13.39",
"@types/websocket": "^1.0.1",
"async": "^3.2.0",
"camelcase": "^6.2.0",
"extend": "~3.0.2",
"ibm-cloud-sdk-core": "^4.2.3",
"isstream": "~0.1.2",
"websocket": "^1.0.33"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"tslint:config": "tslint-config-prettier-check ./tslint.json",
"tslint:fix": "tslint --fix -p . -c tslint.json",
"tslint:check": "tslint -p . -c ./tslint.json",
"eslint:config": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint . --cache",
"lint": "npm run eslint:check && npm run tslint:check",
"build": "tsc && cp package.json dist/",
"doc": "jsdoc -c scripts/jsdoc/config.json",
"tsc-publish-dry": "tsc-publish --no-checks --dry-run",
"postversion": "npm run tsc-publish-dry",
"test-integration": "jest test/integration",
"test-unit": "jest test/unit/",
"test": "jest test/",
"test-unit-travis": "jest --silent --runInBand test/unit/",
"test-integration-travis": "jest --silent --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
"report-coverage": "codecov",
"watch-doc": "nodemon --watch ./ --ext js,tmpl,json --ignore dist/ --ignore doc/ --ignore test/ --ignore examples/ --exec npm run doc",
"watch": "npm run test-unit -- --watch",
"check-packages": "installed-check -e -d",
"snyk-protect": "snyk protect",
"prettier": "prettier --write \"{src,test}/**/*.js\""
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testEnvironment": "node"
},
"snyk": true
}