forked from mudcube/MIDI.js
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "midicube",
"version": "0.10.0",
"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",
"dev": "webpack --env development --watch",
"prepublishOnly": "webpack && cp build/* releases/ && rm releases/midicube.dev.js*",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git://github.com/mscuthbert/midicube.git"
},
"main": "./releases/midicube.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/plugin-transform-object-assign": "^7.27.1",
"@babel/preset-env": "^7.28.0",
"babel-loader": "^9.1.0",
"core-js": "^3.45.0",
"eslint": "^9.32.0",
"eslint-config-airbnb-extended": "^2.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-webpack-plugin": "^5.0.2",
"globals": "^16.3.0",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.101.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"regenerator-runtime": "^0.13.11"
}
}