-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
64 lines (64 loc) · 1.39 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "samsung-remote",
"version": "2.0.1",
"description": "Remote client for Samsung SmartTV",
"main": "index.js",
"type": "module",
"author": {
"name": "Andrei Zharov",
"email": "belmass@gmail.com",
"url": "http://www.o2v.net/"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint ./ --quiet",
"jest": "jest --config jest.config.js",
"test": "npm run lint && npm run jest"
},
"keywords": [
"samsung",
"smarttv",
"remote"
],
"dependencies": {
"is-ip": "5.0.0",
"ping": "0.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/natalan/samsung-remote.git"
},
"license": "MIT",
"contributors": [
{
"name": "Andrei Zharov",
"email": "belmass@gmail.com",
"url": "http://www.o2v.net/"
},
{
"name": "Mathieu Débit",
"url": "https://github.com/MathieuDebit"
},
{
"name": "Grayson Martin",
"url": "https://github.com/GraysonMartin"
},
{
"name": "MeFisto94",
"url": "https://github.com/MeFisto94"
}
],
"devDependencies": {
"@swc/core": "^1.3.25",
"@swc/jest": "^0.2.24",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.3.1",
"jest-cli": "^29.3.1"
}
}