-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.28 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
53
54
55
{
"name": "node-red-contrib-tak",
"version": "4.2.0",
"description": "Node-RED Nodes for encoding & decoding TAK Protocol and Cursor on Target messages from TAK Products.",
"license": "Apache-2.0",
"url": "https://github.com/snstac/node-red-contrib-tak",
"author": {
"name": "Greg Albrecht",
"email": "oss@undef.net",
"url": "https://www.snstac.com"
},
"homepage": "https://github.com/snstac/node-red-contrib-tak",
"dependencies": {
"@vidterra/tak.js": "0.0.8",
"chai": "^4.5.0",
"mocha": "^10.2.0",
"node-fetch": "^2.7.0",
"node-red": "^2.0.0",
"node-red-node-test-helper": "^0.3.0",
"nyc": "^15.1.0",
"varint": "^6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/snstac/node-red-contrib-tak"
},
"keywords": [
"node-red",
"cursor-on-target",
"cot",
"tak",
"atak"
],
"node-red": {
"version": ">=2.0.0",
"nodes": {
"tak": "tak/tak.js"
}
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-config-google": "^0.14.0",
"jshint": "^2.13.6",
"jslint": "^0.12.1",
"node-red-dev": "^0.1.5",
"prettier": "^2.8.7"
},
"scripts": {
"start": "node-red",
"test": "nyc mocha --exit 'test/**spec.js'"
}
}