-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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": "@rocketry/plugin-node-midi",
"version": "0.0.0",
"private": true,
"description": "Plugin for Rocketry that enables node-midi support",
"homepage": "https://github.com/rocketryjs/plugin-node-midi#readme",
"bugs": {
"url": "https://github.com/rocketryjs/plugin-node-midi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocketryjs/plugin-node-midi.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <npm@evelyn.dev> (https://evelyn.dev)",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "./lib",
"test": "./test"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint ./"
},
"dependencies": {
"@rocketry/core": "file:../rocketry",
"midi": "^1.0.0"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-plugin-evelyn": "^3.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^21.0.0",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.0.0"
}
}