-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
package.json
File metadata and controls
74 lines (74 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
66
67
68
69
70
71
72
73
74
{
"name": "universal-config-converter",
"version": "1.1.43",
"description": "Convert between YAML, JSON, TOML, XML, INI, and ENV config formats seamlessly with plugin architecture",
"main": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"bin": {
"ucc": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"start:cli": "node dist/cli.js",
"start:server": "node dist/server.js",
"start": "npm run start:server",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"config",
"converter",
"yaml",
"json",
"toml",
"xml",
"ini",
"env",
"dotenv",
"configuration",
"cli",
"conversion",
"plugin",
"extensible"
],
"author": "Blessing Philips",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/atomicman57/universal-config-converter.git"
},
"homepage": "https://github.com/atomicman57/universal-config-converter#readme",
"bugs": {
"url": "https://github.com/atomicman57/universal-config-converter/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"js-yaml": "^4.1.0",
"@iarna/toml": "^2.2.5",
"dotenv": "^16.3.1",
"commander": "^11.1.0",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"cors": "^2.8.5",
"xml2js": "^0.6.2",
"ini": "^4.1.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/js-yaml": "^4.0.9",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/cors": "^2.8.17",
"@types/xml2js": "^0.4.14",
"@types/ini": "^4.1.1",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"@types/jest": "^29.5.11",
"ts-jest": "^29.1.1"
}
}