smartversion/package.json

51 lines
1.1 KiB
JSON
Raw 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 11:10:37 +00:00
"version": "3.0.3",
"private": false,
2021-04-25 08:52:39 +00:00
"description": "handle semver with ease",
"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",
"@git.zone/tstest": "^1.0.70",
"@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",
"url": "git+https://gitlab.com/push.rocks/smartversion.git"
},
"bugs": {
"url": "https://gitlab.com/push.rocks/smartversion/issues"
},
"homepage": "https://gitlab.com/push.rocks/smartversion#readme"
2024-03-07 11:10:37 +00:00
}