smartyaml/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2017-05-25 13:09:01 +00:00
{
"name": "@pushrocks/smartyaml",
2022-05-20 13:22:57 +00:00
"version": "3.0.0",
"private": false,
2017-05-25 13:09:01 +00:00
"description": "handle yaml in smart ways",
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)",
"build": "(tsbuild --web)"
2017-05-25 13:09:01 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartyaml.git"
},
"keywords": [
"yaml",
"lossless"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartyaml/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartyaml#README",
"dependencies": {
2022-05-20 13:22:56 +00:00
"@types/js-yaml": "^4.0.5",
"js-yaml": "^4.1.0"
2017-05-25 13:09:01 +00:00
},
"devDependencies": {
2022-05-20 13:22:56 +00:00
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsrun": "^1.2.32",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.35"
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"
]
2022-05-20 13:26:53 +00:00
}