-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
{
"name": "@tak-ps/node-cot",
"type": "module",
"version": "12.13.0",
"description": "Lightweight JavaScript library for parsing and manipulating TAK messages",
"author": "Nick Ingalls <[email protected]>",
"main": "dist/index.js",
"types": "index.ts",
"scripts": {
"test": "ts-node-test test/",
"lint": "eslint *.ts lib/ test/",
"doc": "typedoc index.ts",
"build": "tsc --build && cp package.json dist/ && cp ./lib/types/*.xml ./dist/lib/types/ && mkdir -p ./dist/lib/proto/ && cp lib/proto/* ./dist/lib/proto/",
"pretest": "npm run lint"
},
"dependencies": {
"@openaddresses/batch-error": "^2.4.0",
"@sinclair/typebox": "^0.33.0",
"@turf/ellipse": "^7.0.0",
"@turf/helpers": "^7.0.0",
"@turf/point-on-feature": "^7.0.0",
"@turf/truncate": "^7.0.0",
"@types/archiver": "^6.0.2",
"@types/color": "^4.0.0",
"@types/geojson": "^7946.0.14",
"ajv": "^8.12.0",
"archiver": "^7.0.1",
"color": "^4.2.3",
"json-diff-ts": "^4.0.1",
"node-stream-zip": "^1.15.0",
"protobufjs": "^7.3.0",
"rimraf": "^6.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/tape": "^5.6.0",
"eslint": "^9.0.0",
"tape": "^5.6.1",
"ts-node": "^10.9.1",
"ts-node-test": "^0.4.0",
"typedoc": "^0.26.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfpc-coe/node-cot.git"
},
"keywords": [
"tak",
"atak",
"wintak",
"cot",
"cusor",
"target",
"tactical"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dfpc-coe/node-cot/issues"
},
"homepage": "https://github.com/dfpc-coe/node-cot#readme"
}