smartxml/package.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2020-10-24 15:47:12 +00:00
{
2023-10-20 15:38:44 +00:00
"name": "@push.rocks/smartxml",
2023-10-20 15:39:49 +00:00
"version": "1.0.8",
2020-10-24 15:47:12 +00:00
"private": false,
2024-04-14 16:35:03 +00:00
"description": "A package for creating and parsing XML formatted files.",
2020-10-24 15:47:12 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2023-10-20 15:38:44 +00:00
"build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc"
2020-10-24 15:47:12 +00:00
},
"devDependencies": {
2023-10-20 15:38:44 +00:00
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.10",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.44",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.8.7"
2020-10-24 15:47:12 +00:00
},
2020-10-24 16:39:37 +00:00
"dependencies": {
2023-10-20 15:38:44 +00:00
"fast-xml-parser": "^4.3.2"
2020-10-24 16:39:37 +00:00
},
2020-10-24 15:47:12 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2023-10-20 15:38:44 +00:00
],
"repository": {
"type": "git",
2024-05-29 12:17:17 +00:00
"url": "https://code.foss.global/push.rocks/smartxml.git"
2023-10-20 15:38:44 +00:00
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartxml/issues"
},
2024-05-29 12:17:17 +00:00
"homepage": "https://code.foss.global/push.rocks/smartxml",
2024-04-14 16:35:03 +00:00
"type": "module",
"keywords": [
"XML",
"parsing",
"XML creation",
"fast-xml-parser",
"TypeScript",
"data serialization"
]
}