-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.94 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
{
"name": "tum-conf-scraper",
"version": "1.0.6",
"description": "This is a scraper written in Node.js and using Puppeteer that gets the videos served on TUM conf (zoom)",
"main": "bundled/index.js",
"types": "bundled/index.d.ts",
"files": [
"package.json",
"bundled",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "shx rm -rf dist bundled",
"pretranspile": "npm run clean",
"transpile": "tsc -p source",
"prebundle": "npm run clean",
"bundle": "webpack",
"lint": "eslint source --ext ts --format codeframe",
"lint:fix": "eslint source --ext ts --format codeframe --fix",
"test": "jest",
"docs:html": "typedoc",
"docs:html-dev": "typedoc --options typedoc.dev.js",
"docs": "npm run docs:html && npm run docs:html-dev",
"prepublishOnly": "npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/euberdeveloper/tum-conf-scraper.git"
},
"keywords": [
"tum-conf",
"scraper",
"video",
"video-scraper",
"tum-conf-scraper"
],
"author": "Eugenio Vinicio Berretta <euberdeveloper@gmail.com>",
"license": "GPLV3",
"bugs": {
"url": "https://github.com/euberdeveloper/tum-conf-scraper/issues"
},
"homepage": "https://github.com/euberdeveloper/tum-conf-scraper#readme",
"devDependencies": {
"@euberdeveloper/eslint-plugin": "^2.3.0",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"bundle-declarations-webpack-plugin": "^3.1.1",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"shx": "^0.3.4",
"ts-jest": "^29.0.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"euberlog": "^2.1.7",
"video-scraper-core": "^2.0.6"
}
}