-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@airframes/acars-decoder",
"version": "1.8.8",
"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",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"babel-jest": "^30.2.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"jest": "^30.2.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.54.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "npm@10.9.3"
}