forked from djipco/webmidi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
61
62
{
"name": "webmidi",
"version": "2.5.1",
"description": "WebMidi.js helps you tame the Web MIDI API. Send and receive MIDI messages with ease. Control instruments with user-friendly functions (playNote, sendPitchBend, etc.). React to MIDI input with simple event listeners (noteon, pitchbend, controlchange, etc.).",
"author": "Jean-Philippe Côté <jp@djip.co>",
"main": "webmidi.min.js",
"types": "webmidi.d.ts",
"scripts": {
"test": "BROWSER=NONE mocha ./test/headless --exit",
"test-all": "npm run types && npm run lint && npm run test-coverage",
"test-coverage": "nyc --reporter=text npm run test",
"build": "grunt uglify",
"generate-doc": "grunt yuidoc",
"gh-pages": "grunt gh-pages",
"lint": "eslint ./src/*.js",
"release": "grunt release",
"types": "tsc --strict --noEmit ./webmidi.d.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/djipco/webmidi.git"
},
"bugs": {
"url": "https://github.com/djipco/webmidi/issues"
},
"keywords": [
"midi",
"message",
"web",
"browser",
"front-end",
"webmidi api"
],
"homepage": "https://github.com/djipco/webmidi",
"license": "MIT",
"engines": {
"node": ">0.6.x"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"grunt": "^1.0.4",
"grunt-bumpup": "^0.6.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^1.5.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-yuidoc": "^1.0.0",
"grunt-gh-pages": "^3.1.0",
"grunt-git": "^1.0.13",
"grunt-release": "^0.14.0",
"jzz": "^0.7.5",
"midi-test": "^1.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"sinon": "^7.3.2",
"sinon-browser-only": "^1.12.1",
"typescript": "^3.4.5"
},
"dependencies": {}
}