forked from nfroidure/midiplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 831 Bytes
/
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
{
"name": "midiplayer",
"version": "1.0.0",
"description": "Play MIDI files in your browser with the WebMIDIAPI",
"main": "src/MIDIPlayer.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/*.js tests/*.js",
"preversion": "npm run lint",
"build": "browserify -s MIDIPlayer src/MIDIPlayer.js > dist/MIDIPlayer.js"
},
"repository": {
"type": "git",
"url": "git://github.com//nfroidure/MIDIPlayer"
},
"keywords": [
"MIDI",
"player"
],
"author": "Nicolas Froidure",
"license": "MIT",
"dependencies": {
"midievents": "^1.0.1",
"performance-now": "^0.2.0"
},
"devDependencies": {
"browserify": "^12.0.2",
"eslint": "^1.10.3",
"eslint-config-simplifield": "^1.2.0"
}
}