-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "midi-mixer-plugin",
"version": "1.0.2",
"description": "A TypeScript library to support making MIDI Mixer plugins.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpwilliams/midi-mixer-plugin.git"
},
"keywords": [
"midi",
"mixer",
"plugin"
],
"author": "Jack Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpwilliams/midi-mixer-plugin/issues"
},
"homepage": "https://github.com/jpwilliams/midi-mixer-plugin#readme",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/node": "^15.12.1",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"semantic-release": "^17.4.3",
"typescript": "^4.1.3"
},
"dependencies": {
"eventemitter3": "^4.0.7",
"ulid": "^2.3.0"
},
"volta": {
"node": "14.17.0",
"npm": "6.14.13"
}
}