-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "riff-parser",
"version": "1.0.1",
"description": "JavaScript library to encode and decode RIFF formatted files.",
"main": "riff.js",
"scripts": {
"test": "./test/run.sh"
},
"repository": {
"type": "git",
"url": "git@github.com:srveit/riff-js.git"
},
"keywords": [
"RIFF",
"JavaScript",
"WAV",
"audio",
"library"
],
"author": "Stephen R. Veit <srveit@veitconsulting.com> (http://veitconsulting.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/srveit/riff-js/issues"
},
"homepage": "https://github.com/srveit/riff-js/wiki",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"gulp": "gulpjs/gulp#4.0",
"gulp-istanbul": "^1.1.2",
"gulp-jasmine": "^2.2.1",
"gulp-jslint": "^1.0.10",
"gulp-jsonlint": "^1.1.1",
"gulp-load-plugins": "^1.1.0",
"gulp-shell": "^0.6.3",
"gulp-watch": "^4.2.4",
"jasmine": "^2.2.1",
"jasmine-spec-reporter": "^4.2.1",
"jsdoc": "^3.3.1",
"jshint": "^2.8.0",
"jslint": "^0.11.0",
"q": "^1.4.1"
},
"readme": "# riff-parser\nJavascript library for encoding and decoding RIFF format files.\n"
}