forked from miguelmota/spectrogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 912 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 912 Bytes
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
{
"name": "spectrogram",
"version": "0.0.7",
"description": "Audio spectrogram in canvas.",
"main": "spectrogram.js",
"directories": {
"test": "test"
},
"files": [
"spectrogram.js"
],
"scripts": {
"test": "./node_modules/tape/bin/tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/spectrogram"
},
"keywords": [
"audio",
"spectrogram",
"canvas"
],
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "http://www.miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/spectrogram/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/miguelmota/spectrogram/issues"
},
"homepage": "https://github.com/miguelmota/spectrogram",
"devDependencies": {
"tape": "^3.0.3"
},
"engines": {
"node": ">=0.10.0"
}
}