-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 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
{
"name": "connector",
"version": "1.1.0",
"description": "Connector between backend & local network",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "echo \"No test specified\" && exit 0",
"dev": "./node_modules/.bin/nodemon -w . -w .env index.js",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint --fix .",
"bundle": "grunt compress",
"postinstall": "scripts/post-install.sh",
"build": "grunt build",
"build:docker": "grunt build:docker",
"publish": "grunt publish",
"release": "grunt release"
},
"pkg": {
"scripts": [
"http",
"https"
],
"targets": [
"node16-linux-x64",
"node16-windows-x64",
"node16-darwin-x64"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenHausIO/connector.git"
},
"author": "Marc Stirner <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/OpenHausIO/connector/issues"
},
"homepage": "https://github.com/OpenHausIO/connector#readme",
"dependencies": {
"colors": "^1.4.0",
"dateformat": "^4.6.3",
"dotenv": "^16.0.0",
"minimist": "^1.2.6",
"ws": "^8.5.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"eslint": "^8.10.0",
"grunt": "^1.5.3",
"grunt-contrib-uglify": "^5.2.2",
"nodemon": "^2.0.15",
"pkg": "^5.8.0"
}
}