smartversion/package.json
2024-05-29 14:17:06 +02:00

58 lines
1.3 KiB
JSON

{
"name": "@push.rocks/smartversion",
"version": "3.0.5",
"private": false,
"description": "A library to handle semantic versioning with ease.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.61",
"@git.zone/tsrun": "^1.2.32",
"@git.zone/tstest": "^1.0.88",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.11.25"
},
"dependencies": {
"@types/semver": "^7.3.9",
"semver": "^7.3.5"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartversion.git"
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartversion/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartversion",
"keywords": [
"semantic versioning",
"semver",
"version management",
"npm package",
"version comparison",
"typescript"
]
}