-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 936 Bytes
/
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
{
"name": "youtube_transcribe_parser",
"version": "1.0.1",
"description": "This node module aims to get as an input a link to youtube video and return as an output its transcribtion in a JSON format.",
"main": "index.js",
"scripts": {
"test": "mocha --require babel-core/register ./test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niztal/youtube_transcribe_deserializer.git"
},
"keywords": [
"youtube",
"transcribe",
"transcribtion",
"speech"
],
"author": "nitzan.tal",
"license": "MIT",
"bugs": {
"url": "https://github.com/niztal/youtube_transcribe_parser/issues"
},
"homepage": "https://github.com/niztal/youtube_transcribe_parser#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"eslint": "^5.16.0",
"mocha": "^5.0.4",
"nock": "^10.0.6"
},
"dependencies": {
"axios": "^0.19.0",
"xml2js": "^0.4.19"
}
}