-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 882 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
40
{
"name": "interchange-file-format",
"version": "0.4.1",
"description": "Interchange File Format (IFF) codec.",
"main": "index.js",
"scripts": {
"test": "nyc tape test/*.js"
},
"keywords": [
"interchange",
"file",
"format",
"iff",
"aiff",
"aif"
],
"author": "Joseph Werle <[email protected]>",
"license": "MIT",
"devDependencies": {
"nyc": "^15.1.0",
"tape": "^5.0.1"
},
"dependencies": {
"nanoassert": "^2.0.0",
"streamx": "^2.6.6",
"varint": "^5.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwerle/interchange-file-format.git"
},
"bugs": {
"url": "https://github.com/jwerle/interchange-file-format/issues"
},
"homepage": "https://github.com/jwerle/interchange-file-format#readme"
}