-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (33 loc) · 966 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
{
"name": "audio-metadata",
"version": "0.3.0",
"description": "Extract metadata from audio files",
"keywords": [ "id3", "metadata", "mp3", "ogg", "wav", "audio" ],
"author": "Tommy Montgomery <[email protected]> (http://tmont.com/)",
"repository": {
"type": "git",
"url": "https://github.com/tmont/audio-metadata.git"
},
"bin": "bin/audio-metadata.js",
"files": [
"index.js",
"audio-metadata.min.js",
"src",
"bin",
"README.md"
],
"license": "WTFPL",
"devDependencies": {
"mocha": "1.16.2",
"should": "2.1.1",
"browserify": "3.19.1",
"uglify-js": "2.4.8",
"serve": "1.3.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha -R spec tests",
"start": "./node_modules/.bin/serve -p 24578 .",
"build": "./node_modules/.bin/browserify -s AudioMetadata -e index.js --bare > audio-metadata.js",
"minify": "npm run build && ./node_modules/.bin/uglifyjs audio-metadata.js > audio-metadata.min.js && rm audio-metadata.js"
}
}