smartyaml/package.json
2024-05-29 14:17:20 +02:00

59 lines
1.3 KiB
JSON

{
"name": "@push.rocks/smartyaml",
"version": "3.0.4",
"private": false,
"description": "A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartyaml.git"
},
"keywords": [
"YAML",
"JavaScript",
"data serialization",
"conversion",
"js-yaml",
"TypeScript",
"nodejs",
"parsing",
"stringify"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartyaml/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartyaml",
"dependencies": {
"yaml": "^2.4.2"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.61",
"@git.zone/tsrun": "^1.2.32",
"@git.zone/tstest": "^1.0.71",
"@push.rocks/tapbundle": "^5.0.3",
"@types/node": "^20.12.7"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
}