-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "ialarm",
"version": "0.6.7",
"description": "A node library to control iAlarm/antifurtocasa365, Casasicura/Siqura and other chinese 'TCP IP' alarm system like Meian ST-IVCGT clones and Emooluxr",
"bin": {
"meian-cli": "./cli.js",
"ialarm-cli": "./cli.js"
},
"type": "module",
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git://github.com/maxill1/node-ialarm.git"
},
"dependencies": {
"winston": "^3.3.3",
"xml-js": "^1.6.11",
"yargs": "^17.6.2"
},
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"docs": "jsdoc2md src/meian-commands.js > Commands.md"
},
"keywords": [
"ialarm",
"alarm",
"antifurto365",
"meian",
"emoolux",
"tcp ip alarm"
],
"author": "Luca Mazzilli",
"license": "MIT",
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.2.2",
"jsdoc-to-markdown": "^7.1.1"
}
}