-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "node-red-contrib-alexa-home",
"version": "2.0.0",
"description": "Works directly with Alexa in your local network",
"license": "MIT",
"keywords": [
"node-red",
"alexa",
"phillips",
"hue"
],
"node-red": {
"nodes": {
"alexa-home": "alexa/alexa-home.js",
"alexa-home-controller": "alexa/alexa-home-controller.js"
}
},
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"mustache": "^4.2.0",
"node-ssdp": "^4.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.5.4",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"npm-check": "^6.0.1",
"prettier": "^1.19.1",
"should": "^13.2.3",
"supertest": "^6.2.3"
},
"scripts": {
"test": "mocha --recursive test",
"lint:fix": "eslint --fix alexa/**.js",
"lint": "eslint alexa/**.js",
"eslint:github-action": "eslint alexa/**.js",
"fmt": "prettier --write ./*/**.{json,js,ts,yml,md}",
"fmt:check": "prettier --check ./*/**.{json,js,ts,yml,md}"
},
"repository": "mabunixda/node-red-contrib-alexa-home"
}