-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "mp3-parser",
"version": "0.3.0",
"description": "Read MPEG audio frames & tags",
"keywords": [
"mpeg",
"audio",
"mp3",
"mp2",
"id3",
"id3v2",
"xing",
"lame"
],
"bugs": "https://github.com/biril/mp3-parser/issues",
"license": "MIT",
"author": "biril <[email protected]>",
"main": "main.js",
"directories": {
"lib": "lib",
"example": "example"
},
"repository": {
"type": "git",
"url": "https://github.com/biril/mp3-parser"
},
"scripts": {
"test": "node ./scripts/test.js",
"lint": "jshint --show-non-errors main.js lib/ test/spec/ && jscs main.js lib/ test/spec/",
"generate-docs": "grock --glob './README.md' --glob './main.js' --glob './lib/*.js' --index 'README.md' --verbose"
},
"devDependencies": {
"audio-test-data": "git://github.com/biril/audio-test-data.git",
"grock": "^0.3.8",
"jasmine": "^2.5.2",
"jasmine-expect": "^3.0.1",
"jasmine-spec-reporter": "^2.7.0",
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"underscore": "^1.8.3"
},
"engines": {
"node": ">=4.0.0"
}
}