Files
smartversion/package.json

57 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/)",
"build": "(tsbuild)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.5.2"
},
"dependencies": {
"@types/semver": "^7.7.1",
"semver": "^7.7.4"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.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"
]
}