-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.21 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
51
52
{
"name": "node-red-contrib-sitx",
"version": "1.0.2",
"description": "Node-RED Nodes for sending & receiving Cursor on Target TAK Data with PAR Sit(x).",
"license": "Apache-2.0",
"url": "https://github.com/snstac/node-red-contrib-sitx",
"author": {
"name": "Greg Albrecht",
"email": "[email protected]",
"url": "https://www.snstac.com"
},
"homepage": "https://github.com/snstac/node-red-contrib-sitx",
"dependencies": {
"ws": "^8.13.0",
"mocha": "^10.2.0",
"node-red": "^2.2.2",
"node-red-node-test-helper": "^0.3.2",
"nyc": "^15.1.0",
"varint": "^6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/snstac/node-red-contrib-sitx"
},
"keywords": [
"node-red",
"cursor-on-target",
"cot",
"tak",
"atak"
],
"node-red": {
"version": ">=2.0.0",
"nodes": {
"sitx": "sitx/sitx.js"
}
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1"
},
"scripts": {
"start": "node-red",
"test": "nyc mocha --exit 'test/**spec.js'"
}
}