-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 920 Bytes
/
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
{
"name": "verisure",
"version": "5.1.1",
"description": "A module for reading and changing status of Verisure devices.",
"main": "index.js",
"scripts": {
"test": "eslint *.js && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptz0n/node-verisure.git"
},
"keywords": [
"alarm",
"automation",
"verisure"
],
"author": "Erik Eng",
"license": "MIT",
"bugs": {
"url": "https://github.com/ptz0n/node-verisure/issues"
},
"homepage": "https://github.com/ptz0n/node-verisure#readme",
"engines": {
"node": ">=10"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"axios": "^0.24.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"jest": "^26.6.3",
"nock": "^13.0.9"
}
}