-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.28 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
{
"name": "chaptertool",
"version": "0.5.0",
"description": "Manage and generate chapters for podcasts and other media via cli or web",
"keywords": [
"podcast",
"ffmpeg",
"chapters",
"youtube",
"mkvmerge",
"matroska",
"webvtt",
"pyscenedetect",
"vorbis",
"apple-chapters",
"podlove",
"podcast-chapters",
"edl",
"hls",
"scenecut"
],
"type": "module",
"main": "chaptertool.js",
"bin": "chaptertool.js",
"homepage": "https://github.com/Mtillmann/chaptertool",
"scripts": {
"test": "jest",
"sass-dev": "node-sass --recursive --watch src/scss --output static",
"build": "rollup -c && terser static/app.js --compress ecma=2021 --output static/app.js && node-sass --recursive --output-style compressed src/scss --output static && node scripts/writeversion.js",
"createIndexHTML": "node scripts/empuggen.js",
"dev": "rollup -c -w",
"watch": "concurrently \"node-sass --recursive --watch src/scss --output static\" \"npm run dev\" \"nodemon --watch src/Server.js --exec node chaptertool.js serve\""
},
"author": "Martin Tillmann<[email protected]>",
"bugs": {
"url": "https://github.com/Mtillmann/chaptertool/issues"
},
"files": [
"src",
"scripts",
"static"
],
"license": "MIT",
"dependencies": {
"@mtillmann/chapters": "^0.1.0",
"@zip.js/zip.js": "^2.7.32",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"dotenv": "^16.3.2",
"escape-string-regexp": "^5.0.0",
"express": "^4.18.2",
"filenamify": "^6.0.0",
"jsdom": "^24.0.0",
"node-fetch-native": "^1.6.1",
"pug": "^3.0.2",
"shepherd.js": "^11.2.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"alpinejs": "^3.13.4",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-sass": "^9.0.0",
"nodemon": "^3.0.3",
"rollup": "^4.9.6",
"rollup-plugin-copy": "^3.5.0",
"terser": "^5.27.0"
},
"jest": {
"transformIgnorePatterns": [
"!node_modules/"
],
"testMatch": [
"<rootDir>/tests/*.test.js"
],
"testEnvironment": "./jest-env-jsdom.js"
}
}