-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "streamdeck-control",
"version": "1.0.0",
"description": "An npm module to launch the elgato streamdeck control",
"main": "index.js",
"dependencies": {
"atem": "^0.1.8",
"dmx": "^0.2.2",
"lodash": "^4.17.11",
"stream-deck-api-mazeppa": "^0.1.2"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0"
},
"scripts": {
"start": "node ./index.js",
"test": "npm run lint && npm run unit",
"test:lint": "eslint",
"test:lint:fix": "npm run test:lint -- --fix",
"test:unit": "npm run jest",
"test:jest": "jest --coverage",
"test:jest:watch": "npm run test:jest -- --watch"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LA1TV/streamdeck-control.git"
},
"keywords": [
"elgato",
"streamdeck"
],
"author": "Benjamin Kay",
"license": "MIT",
"bugs": {
"url": "https://github.com/LA1TV/streamdeck-control/issues"
},
"homepage": "https://github.com/LA1TV/streamdeck-control#readme"
}