forked from openhab/openhab-google-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "openhab.google-assistant-smarthome",
"version": "3.3.1",
"description": "A Google Assistant, Actions on Google based implementation for openHAB",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/openhab/openhab-google-assistant.git"
},
"author": "Mehmet Arziman",
"contributors": [
"Michael Krug"
],
"scripts": {
"start": "node server.js",
"test": "jest --silent --coverage",
"test-ci": "jest --silent --coverage --ci",
"lint": "eslint --ext .js --cache .",
"fix": "eslint --fix --ext .js --cache .",
"release-major": "npm version major -m \":bookmark: Release (major): %s\"",
"release-minor": "npm version minor -m \":bookmark: Release (minor): %s\"",
"release-patch": "npm version patch -m \":bookmark: Release (patch): %s\""
},
"jest": {
"setupFiles": [
"./tests/setenv.js"
]
},
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/openhab/openhab-google-assistant/issues"
},
"homepage": "https://github.com/openhab/openhab-google-assistant",
"files": [
"*.js",
"docs/"
],
"dependencies": {
"express": "^4.17.2",
"openhab.google-assistant-smarthome.cloud-function": "file:functions",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"nock": "^13.2.4",
"prettier": "2.5.1"
}
}