-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "insynctive",
"version": "2.0.0",
"description": "Provides connectivity to Pella Insynctive Bridge over network",
"main": "lib/index.js",
"scripts": {
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"lint": "gts lint",
"posttest": "npm run lint",
"prepare": "npm run compile",
"prepublishOnly": "run-s clean compile",
"pretest": "npm run compile",
"start": "run-s compile start:express",
"start:express": "node preview/server.js",
"test": "eslint src preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stsvilik/insynctive.git"
},
"keywords": [
"pella",
"insynctive",
"bridge",
"home",
"automation",
"door",
"sensors",
"window",
"sensors"
],
"author": "Simon Tsvilik",
"license": "GNU",
"dependencies": {
"log4js": "^6.7.1",
"npm-run-all": "^4.1.5",
"telnet-client": "^2.0.6"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"express": "^4.18.2",
"gts": "^3.1.1",
"typescript": "~4.9.4"
}
}