-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·42 lines (42 loc) · 1.15 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
{
"name": "midi.js",
"version": "0.3.1",
"description": "A modern JavaScript port of MIDI.js.",
"author": "SuneBear",
"license": "MIT",
"homepage": "https://github.com/SuneBear/midi.js",
"repository": {
"type": "git",
"url": "[email protected]:SuneBear/midi.js.git"
},
"keywords": [
"midi",
"webaudio"
],
"files": [
"lib",
"LICENSE"
],
"main": "lib/midi.js",
"scripts": {
"dev": "webpack --progress --colors --watch & browser-sync start -s examples --ss lib --files examples lib --no-open",
"build": "rm -rf lib && webpack && BUILD=1 webpack",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"deploy": "gh-pages -d examples && gh-pages -d lib -a"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"browser-sync": "^2.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"gh-pages": "^0.11.0",
"chai": "3.4.1",
"mocha": "2.3.4",
"standard": "^8.0.0",
"standard-loader": "^5.0.0",
"webpack": "1.13.2"
}
}