-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "node-id3tag",
"version": "0.9.8",
"description": "Pure JavaScript ID3 Tag writer/reader",
"author": "Kevin Buffington, Jan Metzger <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kbuffington/node-id3tag.git"
},
"bugs": {
"url": "https://github.com/kbuffington/node-id3tag/issues"
},
"keywords": [
"id3",
"mp3",
"tagger",
"tags",
"music"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kbuffington/node-id3tag/raw/master/LICENSE"
}
],
"homepage": "https://github.com/kbuffington/node-id3tag#readme",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"dependencies": {
"iconv-lite": "^0.4.24"
},
"devDependencies": {
"@types/node": "^10.7.1"
}
}