forked from NickParks/elgato-light-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "elgato-light-api",
"version": "1.0.4",
"description": "Control Elgato Key Lights using Javascript!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "tsc && node dist/tests/test.js",
"prepare": "npm run build",
"start": "tsc && node dist/index.js"
},
"keywords": [
"Elgato",
"Key Lights",
"Streaming"
],
"homepage": "https://github.com/NickParks/elgato-light-api",
"repository": {
"type": "git",
"url": "https://github.com/NickParks/elgato-light-api.git"
},
"bugs": {
"url": "https://github.com/NickParks/elgato-light-api/issues",
"email": "nickparksdev@gmail.com"
},
"author": "Nick Parks <nickparksdev@gmail.com> (http://nickparks.me/)",
"license": "MIT",
"dependencies": {
"bonjour": "^3.5.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"ts-number-range": "^1.0.2"
},
"devDependencies": {
"@types/bonjour": "^3.5.5",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.45",
"typescript": "^3.7.5"
},
"files": [
"dist/**/*"
]
}