-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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": "securitas-direct",
"version": "1.2.0",
"description": "A module for reading and changing status of Securitas Direct devices.",
"main": "index.js",
"scripts": {
"test": "eslint *.js && jest --env=node --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptz0n/node-securitas-direct.git"
},
"keywords": [
"alarm",
"automation",
"verisure",
"securitas direct"
],
"author": [
"Erik Eng"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ptz0n/node-securitas-direct/issues"
},
"homepage": "https://github.com/ptz0n/node-securitas-direct#readme",
"engines": {
"node": ">=8"
},
"dependencies": {
"axios": "^0.21.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^23.1.0",
"jest": "^25.0.0",
"nock": "^12.0.0",
"timekeeper": "^2.2.0"
},
"jest": {
"testEnvironment": "node"
}
}