-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (38 loc) · 1.05 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
{
"name": "midijs",
"version": "0.12.0",
"description": "Read and write Standard MIDI files and enable communication with MIDI devices!",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"docs": "./node_modules/.bin/documentation index.js -f html -o docs --lint"
},
"repository": {
"type": "git",
"url": "http://github.com/MattouFP/midijs.git"
},
"keywords": [
"midi",
"files",
"parser",
"music",
"devices"
],
"author": {
"name": "Mattéo DELABRE",
"email": "[email protected]",
"url": "https://github.com/MattouFP"
},
"dependencies": {
"buffercursor": "0.0.12",
"promise": "^7.0.3"
},
"devDependencies": {
"istanbul": "^0.3.5",
"documentation": "^2.0.0",
"buffer-equal": "0.0.1",
"mocha": "^2.1.0"
}
}