smartversion/package.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2016-08-28 11:36:35 +00:00
{
2024-03-07 11:10:36 +00:00
"name": "@push.rocks/smartversion",
2024-03-07 12:22:25 +00:00
"version": "3.0.5",
"private": false,
2024-04-14 16:32:47 +00:00
"description": "A library to handle semantic versioning with ease.",
2021-04-25 08:52:39 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-04-26 12:44:53 +00:00
"type": "module",
2017-08-17 14:15:47 +00:00
"author": "Lossless GmbH",
"license": "MIT",
2016-08-28 11:36:35 +00:00
"scripts": {
2021-04-26 03:44:42 +00:00
"test": "(tstest test/ --web)",
2024-03-07 11:10:36 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2016-08-28 11:36:35 +00:00
},
2017-08-17 14:15:47 +00:00
"devDependencies": {
2024-03-07 11:10:36 +00:00
"@git.zone/tsbuild": "^2.1.61",
"@git.zone/tsrun": "^1.2.32",
2024-03-07 12:22:24 +00:00
"@git.zone/tstest": "^1.0.88",
2024-03-07 11:10:36 +00:00
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.11.25"
2016-08-28 11:36:35 +00:00
},
2017-08-17 14:15:47 +00:00
"dependencies": {
2022-04-26 12:44:53 +00:00
"@types/semver": "^7.3.9",
2021-04-25 08:52:39 +00:00
"semver": "^7.3.5"
2019-09-11 15:37:36 +00:00
},
"files": [
2021-04-25 08:52:39 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-11 15:37:36 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-04-25 08:52:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-03-07 11:10:36 +00:00
],
"repository": {
"type": "git",
2024-05-29 12:17:06 +00:00
"url": "https://code.foss.global/push.rocks/smartversion.git"
2024-03-07 11:10:36 +00:00
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartversion/issues"
},
2024-05-29 12:17:06 +00:00
"homepage": "https://code.foss.global/push.rocks/smartversion",
2024-04-14 16:32:47 +00:00
"keywords": [
"semantic versioning",
"semver",
"version management",
"npm package",
"version comparison",
"typescript"
]
}