UNPKG

1.54 kBJSONView Raw
1{
2 "name": "musicmetadata",
3 "description": "Streaming music metadata parser for node and the browser.",
4 "version": "0.4.6",
5 "author": "Lee Treveil",
6 "dependencies": {
7 "buffer-equal": "0.0.0",
8 "strtok2": "~1.0.0",
9 "filereader-stream": "0.0.1",
10 "through": "~2.3.4",
11 "node-bitarray": "0.0.2",
12 "deep-equal": "~0.1.2",
13 "int53": "0.2.3"
14 },
15 "keywords": [
16 "id3",
17 "id3v1",
18 "id3v2",
19 "m4a",
20 "mp4",
21 "vorbis",
22 "ogg",
23 "flac",
24 "asf",
25 "wma",
26 "wmv",
27 "tags",
28 "tag"
29 ],
30 "main": "lib",
31 "browser": "lib/browser",
32 "scripts": {
33 "pretest": "jshint lib/*.js test/*.js",
34 "test": "[ ! -d 'test/' ] && echo 'The test directory is not included with the project due to the size of the test audio files. If you want to run the tests you can git clone the project.' || prova test/test-*.js",
35 "test-browser": "prova -t brfs test/test-*.js -b",
36 "dist": "browserify lib/browser.js --standalone 'musicmetadata' -o dist/musicmetadata.js"
37 },
38 "devDependencies": {
39 "prova": "~1.9.0",
40 "jshint": "~2.4.3",
41 "brfs": "1.2.0"
42 },
43 "testling": {
44 "files": [
45 "test/test-js-*.js",
46 "test/js-*.js"
47 ],
48 "browsers": [
49 "firefox/latest",
50 "chrome/latest",
51 "safari/latest"
52 ]
53 },
54 "engines": {
55 "node": "*"
56 },
57 "repository": {
58 "type": "git",
59 "url": "git://github.com/leetreveil/node-musicmetadata.git"
60 },
61 "jshintConfig": {
62 "asi": true,
63 "node": true,
64 "maxlen": 100,
65 "indent": 2
66 }
67}