forked from deepgram/deepgram-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 KB
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
{
"name": "@deepgram/sdk",
"version": "X.X.X",
"description": "An SDK for the Deepgram automated speech recognition platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:lib && webpack --config webpack.config.js && npm run types",
"build:lib": "tsc --project ./tsconfig.json",
"coverage": "nyc --reporter=lcovonly --reporter=text --reporter=text-summary npm run test",
"lint": "eslint ./src --ext .ts && prettier --config .prettierrc src/*.ts src/**/*.ts --write",
"test": "mocha -r ts-node/register tests/*test.ts tests/**/*test.ts --insect",
"watch": "nodemon -e ts --watch src --exec \"npm run build\"",
"types": "copyfiles -f \"bundle/*.d.ts\" dist && copyfiles -u 1 \"bundle/**/*.d.ts\" dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepgram/deepgram-node-sdk.git"
},
"keywords": [
"deepgram",
"asr",
"speech",
"sdk"
],
"author": {
"name": "Deepgram DevRel Team",
"email": "devrel@deepgram.com"
},
"contributors": [
"Brian Barrow",
"Brian Hillis",
"Luke Oliff",
"Michael Jolley",
"Sandra Rodgers",
"Shir Goldberg"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/deepgram/deepgram-node-sdk/issues"
},
"homepage": "https://github.com/deepgram/deepgram-node-sdk#readme",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^14.17.32",
"@types/sinon": "^10.0.6",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"mocha": "^9.1.3",
"mock-websocket": "^0.0.7",
"nock": "^13.3.1",
"nodemon": "^2.0.14",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"sinon": "^10.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9",
"ws": "^7.5.5"
}
}