-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "revai-node-sdk",
"version": "3.8.6",
"description": "Rev AI makes speech applications easy to build!",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"build-examples": "tsc && cd ./examples && npm install && rm -r ./node_modules/revai-node-sdk/src && cp -r ../dist/src ./node_modules/revai-node-sdk",
"unit-test": "jest -c ./jest.config.unit.js",
"integration-test": "jest -c ./jest.config.integration.js && node ./test/integration/test/stream.js",
"lint": "eslint -c .eslintrc.js --ext .ts \".\"",
"lint-fix": "eslint --fix -c .eslintrc.js --ext .ts \".\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/revdotcom/revai-node-sdk.git"
},
"keywords": [
"rev_ai",
"Rev AI",
"speech",
"to",
"text",
"speechtotext",
"ASR",
"automatic speech recognition",
"speech recognition",
"speech to text api",
"speech rec",
"speech api"
],
"author": "Rev Ai",
"license": "MIT",
"bugs": {
"url": "https://github.com/revdotcom/revai-node-sdk/issues"
},
"homepage": "https://github.com/revdotcom/revai-node-sdk#readme",
"dependencies": {
"axios": "^0.21.1",
"form-data": "^2.3.3",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/form-data": "^2.2.1",
"@types/jest": "^23.3.13",
"@types/node": "^12.20.55",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^4.7.4"
},
"jest": {
"projects": [
"./jest.config.unit.js",
"./jest.config.integration.js"
]
}
}