-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "midi-player-js",
"version": "2.0.17",
"description": "Midi parser & player engine for browser or Node. Works well with single or multitrack MIDI files.",
"main": "build/index.js",
"module": "build/index.browser.js",
"browser": "build/index.browser.js",
"types": "index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "mocha",
"build": "rollup -c",
"watch": "watch 'npm run build' src",
"docs": "jsdoc src README.md -d ./docs -t ./node_modules/minami",
"prepare": "npm run build",
"postinstall": "node postinstall.js",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-destructuring": "^7.14.7",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-replace": "^2.4.2",
"jsdoc": "^3.6.7",
"minami": "^1.1.1",
"mocha": "^10.2.0",
"rollup": "^2.56.3",
"sinon": "^7.1.1",
"watch": "^1.0.2"
},
"directories": {
"lib": "src",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grimmdude/MidiPlayerJS.git"
},
"bugs": {
"url": "https://github.com/grimmdude/MidiPlayerJS/issues"
},
"keywords": [
"midi",
"midi-file",
"midi-parser",
"midi-player",
"parser",
"player",
"music",
"audio",
"smf"
],
"author": "Garrett Grimm",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {}
}