forked from bignerdranch/id3-meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 967 Bytes
/
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
{
"name": "id3-meta",
"version": "1.1.0",
"description": "A metadata parser for ID3v2 formatted MP3s.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bignerdranch/id3-meta.git"
},
"keywords": [
"javascript",
"id3",
"mp3",
"music",
"parser",
"arraybuffer",
"typedarrays",
"dataview",
"textencoder",
"reader"
],
"author": "Jonathan Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/bignerdranch/id3-meta/issues"
},
"homepage": "https://github.com/bignerdranch/id3-meta#readme",
"dependencies": {
"underscore.string": "^3.3.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1"
}
}