-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.61 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.61 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "arfcn",
"version": "2.1.1",
"description": "Utilities for working with Absolute Radio Frequency Channel Numbers (ARFCN) in cellular networks",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"prepublishOnly": "bun run build",
"test": "jest"
},
"keywords": [
"arfcn",
"cellular",
"5g",
"5g nr",
"lte",
"frequency",
"band",
"telecommunications",
"nr-arfcn",
"earfcn",
"umts",
"utra",
"utra-fdd",
"utra-tdd",
"w-cdma",
"td-cdma",
"td-scdma",
"uarfcn",
"3gpp"
],
"author": "Hoon Choi <hoon@orcatown.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/hoon/arfcn.git"
},
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": ["ts-jest", {
"useESM": true,
"tsConfig": "tsconfig.test.json"
}]
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"extensionsToTreatAsEsm": [".ts"]
}
}