forked from alexryd/node-shellies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1 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": "shellies",
"version": "1.7.0",
"description": "Handles communication with Shelly devices",
"main": "index.js",
"bin": "bin/shellies",
"scripts": {
"test": "mocha --exit",
"eslint": "eslint ."
},
"pre-commit": [
"eslint",
"test"
],
"keywords": [
"shelly",
"coap",
"http"
],
"author": "Alexander Rydén",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexryd/node-shellies.git"
},
"dependencies": {
"coap": "^1.0.3",
"colors": "^1.4.0",
"command-line-commands": "^3.0.2",
"eventemitter3": "^4.0.7",
"require-all": "^3.0.0",
"superagent": "^7.1.1",
"superagent-defaults": "^0.1.14"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.2.0",
"pre-commit": "^1.2.2",
"should": "^13.2.3",
"sinon": "^13.0.1"
}
}