forked from mudcube/MIDI.js
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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": "midicube",
"version": "0.6.2",
"description": "Library to assist in creating ES6 MIDI apps.",
"author": "Michael Deal",
"contributors": [
"Sergi Mansilla",
"Daniel van der Meer",
"Mohit Muthanna",
"Pete Otaqui",
"Michael Scott Asato Cuthbert"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"prepublishOnly": "webpack && cp build/* releases/",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git://github.com/mscuthbert/midicube.git"
},
"main": "./releases/midicube.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"core-js": "^3.27.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-webpack-plugin": "^3.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"regenerator-runtime": "^0.13.11"
}
}