forked from SuneBear/midi.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
{
"name": "midi.js",
"version": "1.1.0",
"description": "A modern JavaScript port of MIDI.js.",
"author": "wustep",
"license": "MIT",
"homepage": "https://github.com/wustep/midi.js",
"repository": {
"type": "git",
"url": "git@github.com:wustep/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 --require @babel/register --require jsdom-global/register --colors -w ./test/*.spec.js",
"deploy": "gh-pages -d examples && gh-pages -d lib -a"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"browser-sync": "^2.15.0",
"chai": "3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"gh-pages": "^3.1.0",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"mocha": "^7.1.2",
"prettier": "^2.0.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}