forked from aadsm/node-id3
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
74 lines (74 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "musicmetadata",
"description": "Streaming music metadata parser for node and the browser.",
"version": "2.0.5",
"author": "Lee Treveil",
"dependencies": {
"deep-equal": "0.2.1",
"filereader-stream": "^0.2.0",
"is-stream": "^1.1.0",
"strtok2": "^1.0.4",
"through": "~2.3.4"
},
"keywords": [
"id3",
"id3v1",
"id3v2",
"m4a",
"mp4",
"vorbis",
"ogg",
"flac",
"asf",
"wma",
"wmv",
"tags",
"tag"
],
"main": "lib",
"browser": "lib/browser",
"scripts": {
"pretest": "standard && jshint lib/*.js test/*.js",
"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.' || tape test/test-*.js",
"test-browser": "for f in test/test-*.js; do browserify -t brfs $f | testling; done",
"dist": "browserify lib/browser.js --standalone 'musicmetadata' -o dist/musicmetadata.js"
},
"devDependencies": {
"tape": "^4.5.1",
"jshint": "~2.5.10",
"brfs": "1.2.0",
"standard": "^3.0.0",
"browserify": "^13.0.0",
"testling": "^1.7.1"
},
"testling": {
"files": [
"test/test-js-*.js",
"test/js-*.js"
],
"browsers": [
"firefox/latest",
"chrome/latest",
"safari/latest"
]
},
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/leetreveil/musicmetadata.git"
},
"jshintConfig": {
"asi": true,
"node": true,
"maxlen": 100,
"indent": 2
},
"license": "MIT",
"standard": {
"ignore": [
"**/dist/**"
]
}
}