-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "web-midi-player",
"version": "1.4.2",
"description": "🎹 Event-driven JavaScript library that enables MIDI playback in the browser.",
"keywords": [
"midi",
"midi player",
"media player",
"web",
"web-assembly",
"libtimidity",
"open-eugene",
"open source",
"audio"
],
"homepage": "https://midi.yvesgurcan.com",
"bugs": {
"url": "https://github.com/yvesgurcan/web-midi-player/issues"
},
"license": "MIT",
"author": {
"name": "Yves Gurcan",
"url": "https://www.yvesgurcan.com/"
},
"main": "index.js",
"directories": {
"lib": "./src",
"doc": "./doc",
"example": "./example",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/yvesgurcan/web-midi-player"
},
"scripts": {
"start": "webpack-dev-server --mode production --progress",
"build:prep": "npm run test && npm run lint && npm run build && npm run docs && cd ./example/react && npm run build",
"build": "webpack --mode production --progress",
"build:quiet": "webpack --mode production",
"lint": "prettier --write **/*.js",
"lint:check": "prettier --check **/*.js",
"test": "jest",
"test:init": "jest --init",
"docs": "documentation build src/MidiPlayer.js -f html -o doc --config documentation.yml --theme ./doc/theme",
"docs:watch": "documentation serve --watch src/MidiPlayer.js --config documentation.yml --theme ./doc/theme",
"upgrade:patch": "npm version patch",
"upgrade:minor": "npm version minor",
"upgrade:major": "npm version major",
"upgrade:releases": "git push --tags",
"gpr:prep": "node scripts/gpr.js"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.8.4",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^3.0.0",
"documentation": "^12.1.4",
"documentation-theme-light": "^1.1.1",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"net": "^1.0.2",
"prettier": "^1.16.4",
"tls": "0.0.1",
"uuid": "^3.3.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"engines": {
"node": ">=12.14.1",
"npm": "~6.2.0"
},
"jest": {
"globals": {
"NODE_ENV": "test"
}
}
}