smartyaml/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2017-05-25 13:09:01 +00:00
{
2024-03-30 20:49:09 +00:00
"name": "@push.rocks/smartyaml",
2024-04-30 15:50:58 +00:00
"version": "3.0.4",
"private": false,
2024-04-14 16:35:53 +00:00
"description": "A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.",
2020-10-26 11:38:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-05-20 13:22:56 +00:00
"type": "module",
2017-05-25 13:09:01 +00:00
"scripts": {
2020-10-26 11:38:58 +00:00
"test": "(tstest test/ --web)",
2024-04-30 15:50:57 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2017-05-25 13:09:01 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:17:20 +00:00
"url": "https://code.foss.global/push.rocks/smartyaml.git"
2017-05-25 13:09:01 +00:00
},
"keywords": [
2024-04-14 16:35:53 +00:00
"YAML",
"JavaScript",
"data serialization",
"conversion",
"js-yaml",
"TypeScript",
"nodejs",
"parsing",
"stringify"
2017-05-25 13:09:01 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartyaml/issues"
},
2024-05-29 12:17:20 +00:00
"homepage": "https://code.foss.global/push.rocks/smartyaml",
2017-05-25 13:09:01 +00:00
"dependencies": {
2024-04-30 15:49:25 +00:00
"yaml": "^2.4.2"
2017-05-25 13:09:01 +00:00
},
"devDependencies": {
2024-04-30 15:49:25 +00:00
"@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"
2020-10-26 11:38:58 +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"
]
2024-05-29 12:17:20 +00:00
}