-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.03 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
{
"name": "@epegzz/node-qu-client",
"version": "1.0.2",
"description": "NodeJS client library for Allen & Heath QU series mixer",
"keywords": [
"node",
"allen&heath",
"qu-16",
"qu-24",
"client",
"controller",
"remote",
"midi"
],
"repository": {
"type": "git",
"url": "https://github.com/epegzz/node-qu-client"
},
"main": "index.js",
"author": "Daniel Schäfer <[email protected]>",
"license": "ISC",
"engines": {
"node": ">=10"
},
"engineStrict": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged",
"lint": "eslint src",
"format": "prettier-eslint --write \"src/**/*.js\""
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"dependencies": {
"midi": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-plugin-jest": "^21.15.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.12.1",
"prettier-eslint-cli": "^4.7.1"
}
}