forked from algolia/youtube-captions-scraper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "youtube-captions-scraper",
"version": "2.1.0",
"description": "Scrape YouTube auto-generated captions",
"main": "dist/index.js",
"author": {
"name": "Algolia, Inc.",
"url": "https://www.algolia.com"
},
"contributors": [
{
"name": "tom byrer",
"email": "[email protected]",
"url": "https://tombyrer.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/algolia/youtube-captions-scraper.git"
},
"homepage": "https://github.com/algolia/youtube-captions-scraper",
"bugs": {
"url": "https://github.com/algolia/youtube-captions-scraper/issues"
},
"license": "MIT",
"scripts": {
"build": "rm -rf dist && babel src -d dist",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"test": "ava",
"flow": "flow"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "^2.0.8",
"eslint": "^4.19.1",
"eslint-config-algolia": "^12.0.0",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-prettier": "^2.7.0",
"flow-bin": "^0.91.0",
"flow-typed": "^2.5.1",
"prettier": "^1.16.1"
},
"dependencies": {
"axios": "^0.26.1",
"he": "^1.2.0"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
}
}