forked from matteodelabre/midijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "@flat/midijs",
"version": "0.15.1",
"description": "Read and write Standard MIDI files and enable communication with MIDI devices!",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "check-dts && 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": "https://github.com/FlatIO/midijs.git"
},
"types": "midijs.d.ts",
"keywords": [
"midi",
"files",
"parser",
"music",
"devices"
],
"author": {
"name": "Mattéo DELABRE",
"email": "matteo.delabre@outlook.fr",
"url": "https://github.com/MattouFP"
},
"dependencies": {
"buffercursor": "0.0.12"
},
"devDependencies": {
"@types/node": "^22.5.3",
"@types/verror": "^1.10.10",
"buffer-equal": "1.0.0",
"check-dts": "^0.8.2",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.3.0"
}
}