This repository has been archived by the owner on Jan 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
101 lines (101 loc) · 3.08 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
{
"name": "aws-transcribe",
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:clean": "npm run clean:dist && tsc",
"build:watch": "tsc --watch",
"dev": "nodemon",
"debug": "DEBUG=aws-transcribe:* nodemon",
"example-stream-from-microphone": "ts-node ./src/examples/stream-from-microphone.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"staged-test": "npm run test -- --bail --findRelatedTests",
"versioning": "standard-version",
"post-versioning": "git push --follow-tags origin master",
"release": "npm run build:clean && np",
"clean:dist": "shx rm -rf dist/",
"clean": "npm run clean:dist && shx rm -rf node_modules/ coverage/",
"pretty-base": "prettier \"**/*.{ts, js, json}\"",
"format": "npm run pretty-base --write",
"lint": "eslint --fix \"src/**/*.{ts,tsx}\"",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src"
},
"author": "Muhammad Qasim <qasim9872@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/qasim9872/aws-transcribe"
},
"keywords": [
"amazon",
"aws",
"transcribe",
"speech",
"transcription",
"websocket"
],
"bugs": {
"url": "https://github.com/qasim9872/aws-transcribe/issues"
},
"homepage": "https://github.com/qasim9872/aws-transcribe#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"@types/throttle": "^1.0.0",
"@types/ws": "^7.2.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.2.3",
"jest-websocket-mock": "^2.0.2",
"lint-staged": "^10.0.9",
"mock-socket": "^9.0.3",
"node-record-lpcm16": "^1.0.1",
"nodemon": "^2.0.2",
"np": "^6.2.0",
"prettier": "^2.0.2",
"shx": "^0.3.2",
"standard-version": "^8.0.1",
"throttle": "^1.0.3",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@aws-sdk/eventstream-marshaller": "0.1.0-preview.2",
"@aws-sdk/util-utf8-node": "0.1.0-preview.1",
"crypto": "^1.0.1",
"debug": "^4.1.1",
"query-string": "^6.11.1",
"ws": "^7.2.3"
},
"lint-staged": {
"*.ts": [
"npm run format",
"npm run lint",
"npm run staged-test",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"standard-version": {
"skip": {
"changelog": true
}
},
"np": {
"yarn": false
}
}