-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "audition-chapter-tagger",
"version": "1.5.0",
"description": "Add Adobe Audition chaptering tags to ID3 tags of mp3 files",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"build": "npm run build:clean && npm run build:windows && npm run build:macos && npm run build:linux",
"build:clean": "rimraf build",
"build:windows": "pkg index.js -t node14-win-x64 -o build/audition-chapter-tagger_v$(project-version)_win.exe",
"build:macos": "pkg index.js -t node14-macos-x64 -o build/audition-chapter-tagger_v$(project-version)_macos",
"build:linux": "pkg index.js -t node14-linux-x64 -o build/audition-chapter-tagger_v$(project-version)_linux"
},
"bin": {
"audition-chapter-tagger": "index.js"
},
"homepage": "https://github.com/DrSkunk/audition-chapter-tagger",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/drskunk/audition-chapter-tagger.git"
},
"bugs": {
"url": "https://github.com/DrSkunk/audition-chapter-tagger/issues"
},
"keywords": [
"adobe",
"podcast",
"mp3",
"id3",
"chaptering"
],
"author": "Sebastiaan Jansen - DrSkunk",
"license": "ISC",
"dependencies": {
"csv-parse": "^4.16.3",
"ffprobe": "^1.1.2",
"ffprobe-static": "^3.0.0",
"get-mp3-duration": "^1.0.0",
"jest": "^27.3.1",
"node-id3": "^0.2.3",
"sharp": "^0.29.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"pkg": "^5.3.3",
"project-version": "^2.0.0",
"rimraf": "^3.0.2"
}
}