-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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": "hqsl-ts",
"version": "2.0.0",
"description": "Library for dealing with HQSL data, creation and verification thereof.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hamlog-online/hqsl-ts.git"
},
"bugs": {
"url": "https://github.com/hamlog-online/hqsl-ts/issues",
"email": "Eugene.Medvedev@wwpass.com"
},
"scripts": {
"generate": "node scripts/build_bandmap.js",
"build": "npm run generate && npm run clean && npm run doc && npm run compile",
"compile": "tsc --project tsconfig.build.json",
"doc": "typedoc",
"test": "jest",
"clean": "rimraf dist/* doc/*",
"prepublishOnly": "npm run build"
},
"author": "Eugene Medvedev (AC1PZ) <Eugene.Medvedev@wwpass.com>",
"license": "MIT",
"dependencies": {
"@date-fns/utc": "^2.1.0",
"adif-parser-ts": "^0.6.21",
"base-x": "^5.0.0",
"date-fns": "^4.1.0",
"openpgp": "^6.1.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.13.4",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.27.7",
"typescript": "^5.7.3"
}
}