-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 1.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "studio-supervisor",
"bin": "source/startup.js",
"version": "1.4.6",
"main": "source/startup.js",
"repository": "https://github.com/wyliodrinstudio/studio-supervisor",
"dependencies": {
"async": "^3.1.0",
"debug": "^4.1.1",
"dockerode": "^3.2.1",
"ip": "^1.1.5",
"lcd": "^2.0.6",
"lodash": "^4.17.19",
"mkdirp": "^0.5.1",
"msgpack5": "^4.2.1",
"node-pty": "^0.9.0",
"onoff": "^4.1.4",
"redis": "^2.8.0",
"rimraf": "^3.0.0",
"split2": "^3.1.1",
"tcp-ping": "^0.1.1",
"uuid": "^3.3.3",
"wireless-tools": "https://github.com/headlessPi/wireless-tools.git",
"ws": "^7.1.2"
},
"optionalDependencies": {
"serialport": "^9.0.2"
},
"devDependencies": {
"eslint": "^7.7.0"
},
"scripts": {
"format": "npx eslint source/**/*.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alexandru Radovici",
"license": "Apache",
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true,
"mocha": false
},
"globals": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [],
"extends": [
"eslint:recommended"
],
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"no-console": [
"error"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"require-await": [
"error"
]
}
}
}