forked from the1812/Touhou-Tagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "touhou-tagger",
"version": "1.0.3",
"description": "从 THBWiki 自动填写东方Project CD曲目信息.",
"main": "dist/core/index.js",
"bin": {
"thtag": "dist/cli/index.js"
},
"scripts": {
"test:flac-writer": "jest dist/core/writer/flac-writer.test.js",
"test:mp3-writer": "jest dist/core/writer/mp3-writer.test.js",
"test:thb-wiki": "jest dist/core/metadata/thb-wiki.test.js",
"start": "node dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the1812/Touhou-Tagger.git"
},
"keywords": [
"touhou",
"touhou-project",
"music-tagger",
"mp3",
"metadata"
],
"author": "Grant Howard",
"license": "MIT",
"bugs": {
"url": "https://github.com/the1812/Touhou-Tagger/issues"
},
"homepage": "https://github.com/the1812/Touhou-Tagger#readme",
"dependencies": {
"axios": "^0.19.0",
"command-line-args": "^5.1.1",
"flac-metadata": "^0.1.1",
"image-type": "^4.1.0",
"imageinfo": "^1.0.4",
"jsdom": "^15.1.1",
"node-id3": "^0.1.11"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/jest": "^24.0.18",
"@types/jsdom": "^12.2.4",
"@types/node": "^12.7.5",
"jest": "^24.9.0"
}
}