forked from matteodelabre/midijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (38 loc) · 1.08 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/jsdoc --readme README.md package.json lib index.js -r"
},
"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",
"es6-promise": "^2.0.1"
},
"devDependencies": {
"istanbul": "^0.3.5",
"jsdoc": "^3.3.0-beta1",
"buffer-equal": "0.0.1",
"mocha": "^2.1.0"
}
}