Files
smartversion/package.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2016-08-28 13:36:35 +02:00
{
2024-03-07 12:10:36 +01:00
"name": "@push.rocks/smartversion",
2024-03-07 13:22:25 +01:00
"version": "3.0.5",
"private": false,
2024-04-14 18:32:47 +02: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 14:44:53 +02:00
"type": "module",
2017-08-17 16:15:47 +02:00
"author": "Lossless GmbH",
"license": "MIT",
2016-08-28 13:36:35 +02:00
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
2024-03-07 12:10:36 +01:00
"buildDocs": "tsdoc"
2016-08-28 13:36:35 +02:00
},
2017-08-17 16:15:47 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.5.2"
2016-08-28 13:36:35 +02:00
},
2017-08-17 16:15:47 +02:00
"dependencies": {
"@types/semver": "^7.7.1",
"semver": "^7.7.4"
2019-09-11 17:37:36 +02:00
},
"files": [
2021-04-25 08:52:39 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-11 17:37:36 +02:00
"cli.js",
".smartconfig.json",
2019-09-11 17:37:36 +02:00
"readme.md"
2021-04-25 08:52:39 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-03-07 12:10:36 +01:00
],
"repository": {
"type": "git",
2024-05-29 14:17:06 +02:00
"url": "https://code.foss.global/push.rocks/smartversion.git"
2024-03-07 12:10:36 +01:00
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartversion/issues"
},
2024-05-29 14:17:06 +02:00
"homepage": "https://code.foss.global/push.rocks/smartversion",
2024-04-14 18:32:47 +02:00
"keywords": [
"semantic versioning",
"semver",
"version management",
"npm package",
"version comparison",
"typescript"
]
}