forked from airframesio/acars-decoder-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 KB
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
{
"name": "@airframes/acars-decoder",
"version": "1.6.19",
"description": "ACARS Message Decoder for TypeScript/JavaScript",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"acars-decoder": "./dist/bin/acars-decoder.js",
"acars-decoder-test": "./dist/bin/acars-decoder-test.js"
},
"scripts": {
"build": "tsup",
"test": "jest"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airframesio/acars-decoder-typescript.git"
},
"bugs": {
"url": "https://github.com/airframesio/acars-decoder-typescript/issues"
},
"homepage": "https://github.com/airframesio/acars-decoder-typescript#readme",
"author": "Kevin Elliott <kevin@welikeinc.com>",
"license": "UNLICENSED",
"dependencies": {
"base85": "^3.1.0",
"minizlib": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/minizlib": "^2.1.7",
"@types/node": "^24.2.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.5.1"
}