Files
smartyaml/package.json
T

63 lines
1.4 KiB
JSON
Raw Normal View History

2017-05-25 15:09:01 +02:00
{
2024-03-30 21:49:09 +01:00
"name": "@push.rocks/smartyaml",
2024-04-30 17:50:58 +02:00
"version": "3.0.4",
"private": false,
2024-04-14 18:35:53 +02:00
"description": "A module for smart handling of YAML data with support for converting between YAML strings and JavaScript objects.",
"exports": {
".": "./dist_ts/index.js"
},
2020-10-26 11:38:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-05-20 15:22:56 +02:00
"type": "module",
2017-05-25 15:09:01 +02:00
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web"
2017-05-25 15:09:01 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:17:20 +02:00
"url": "https://code.foss.global/push.rocks/smartyaml.git"
2017-05-25 15:09:01 +02:00
},
"keywords": [
2024-04-14 18:35:53 +02:00
"YAML",
"JavaScript",
"data serialization",
"conversion",
"js-yaml",
"TypeScript",
"nodejs",
"parsing",
"stringify"
2017-05-25 15:09:01 +02:00
],
"author": "Task Venture Capital GmbH <hello@task.vc>",
2017-05-25 15:09:01 +02:00
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartyaml/issues"
2017-05-25 15:09:01 +02:00
},
2024-05-29 14:17:20 +02:00
"homepage": "https://code.foss.global/push.rocks/smartyaml",
2017-05-25 15:09:01 +02:00
"dependencies": {
"yaml": "^2.8.3"
2017-05-25 15:09:01 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
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",
".smartconfig.json",
"license",
2020-10-26 11:38:58 +00:00
"npmextra.json",
"readme.md"
]
}