forked from openhab/openhab-google-assistant
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "openhab.google-assistant-smarthome",
"version": "3.8.1",
"description": "A Google Assistant, Actions on Google based implementation for openHAB",
"main": "functions/index.js",
"repository": {
"type": "git",
"url": "https://github.com/openhab/openhab-google-assistant.git"
},
"author": "Mehmet Arziman",
"contributors": [
"Michael Krug"
],
"scripts": {
"start": "node testServer.js",
"test": "jest --silent --coverage",
"test-ci": "jest --silent --coverage --ci",
"lint": "eslint --ext .js --cache .",
"fix": "eslint --fix --ext .js --cache .",
"release-major": "cd functions && npm --no-git-tag-version version major && git add package*.json && cd .. && npm version major -f -m \":bookmark: Release (major): %s\"",
"release-minor": "cd functions && npm --no-git-tag-version version minor && git add package*.json && cd .. && npm version minor -f -m \":bookmark: Release (minor): %s\"",
"release-patch": "cd functions && npm --no-git-tag-version version patch && git add package*.json && cd .. && npm version patch -f -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",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"nock": "^13.4.0",
"prettier": "3.1.0"
}
}