-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "@airframes/acars-decoder",
"version": "1.6.16",
"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"
},
"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 <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"@types/node": "^22.0.0",
"base85": "^3.1.0",
"minizlib": "^2.1.2"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.7",
"@types/minizlib": "^2.1.7",
"babel-jest": "^28.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}