-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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-mavlink",
"version": "2.0.8",
"author": "Matthias Hryniszak <[email protected]>",
"license": "LGPL",
"description": "MavLink definitions and parsing library",
"keywords": [
"mavlink"
],
"repository": {
"type": "git",
"url": "git+https://github.com/padcom/node-mavlink.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/padcom/node-mavlink/issues"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/padcom"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"mavlink-mappings": "^1.0.20-20240131-0"
},
"scripts": {
"clean": "rm -rf dist lib/*.js",
"build": "tsc",
"test": "jest",
"test:batch": "tests/main.js e2e --input tests/data.mavlink",
"dev": "jest --watch",
"test:e2e": "./main.js e2e --input data.mavlink",
"sanity-check": "./sanity-check.cjs && ./sanity-check.mjs",
"prepublishOnly": "npm run clean && npm install && npm test && npm run build && npm run sanity-check"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^15.14.9",
"@types/xml2js": "^0.4.8",
"@types/yargs": "^17.0.8",
"jest": "^27.5.1",
"minimize-js": "^1.3.0",
"serialport": "^10.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.6.0",
"typescript": "^4.7.4",
"wget-improved": "^3.2.1",
"xml2js": "^0.4.23",
"yargs": "^17.3.1"
}
}