-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.27 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
52
53
54
55
56
57
58
{
"name": "@rr0/udb",
"type": "module",
"author": "Jérôme Beau <rr0@rr0.org> (https://rr0.org/udb/index.html)",
"version": "2.1.10",
"description": "UFO database reader",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"license": "ISC",
"homepage": "https://github.com/RR0/uDb#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/uDb.git"
},
"bugs": {
"url": "https://github.com/RR0/uDb/issues"
},
"scripts": {
"prebuild": "npm install",
"build": "rm -Rf dist && tsc --project tsconfig.prod.json",
"prepublishOnly": "npm run build && npm run test",
"test": "jest",
"cli": "npx . --help",
"cli:dev": "tsx bin/index.ts -c 10"
},
"bin": {
"udb": "bin/index.ts"
},
"dependencies": {
"bops": "^1.0.1",
"commander": "^12.1.0",
"json2xml": "^0.1.3"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/json2xml": "^0.1.4",
"@types/node": "^22.8.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.5",
"tslint": "^6.1.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"keywords": [
"ufo",
"database",
"larry",
"hatch",
"csv",
"xml"
],
"publishConfig": {
"access": "public"
}
}