-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
72 lines (72 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "web-midi-api-shim",
"version": "1.4.20",
"description": "Shim for the WebMIDI API, intended to be used in environments that don't have the WebMIDI API implemented: Nodejs and all browsers except Chrome, Chromium and Opera",
"keywords": [
"midi",
"music",
"sound",
"jazz plugin",
"webmidi api"
],
"main": "node/index.js",
"module": "src/index.js",
"browser": "dist/index.js",
"homepage": "https://github.com/cwilso/WebMIDIAPIShim",
"bugs": "https://github.com/cwilso/WebMIDIAPIShim/issues",
"license": "Apache-2.0",
"author": {
"name": "Chris Wilson",
"email": "[email protected]",
"url": "http://cwilso.com/"
},
"contributors": [
{
"name": "jazz-soft",
"email": "[email protected]",
"url": "http://jazz-soft.net"
},
{
"name": "abudaan",
"email": "[email protected]",
"url": "http://github.com/abudaan"
}
],
"directories": {
"lib": "src",
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/cwilso/WebMIDIAPIShim.git"
},
"scripts": {
"test": "node ./node/test-node.js",
"build": "browserify -t [babelify] src/index.js -o build/WebMIDIAPI.js",
"minify": "babel-minify build/WebMIDIAPI.js > build/WebMIDIAPI.min.js",
"compile": "babel --source-maps 'true' src --out-dir ./dist",
"update": "npm run compile && npm run build && npm run minify",
"watch": "watchify src/index.js -t babelify -o build/WebMIDIAPI.js --debug --verbose",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"jazz-midi": "^1.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-minify": "^0.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.5.0",
"eslint": "^4.14.0",
"watchify": "^3.9.0"
},
"engines": {
"node": "0.10.x"
},
"private": false
}