smartpath/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2015-09-25 21:05:25 +00:00
{
2023-07-10 08:17:16 +00:00
"name": "@push.rocks/smartpath",
2024-04-22 16:42:18 +00:00
"version": "5.0.18",
2018-07-21 21:26:11 +00:00
"private": false,
2024-04-13 22:53:53 +00:00
"description": "A library offering smart ways to handle file and directory paths.",
2020-04-13 17:30:49 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-14 12:26:48 +00:00
"type": "module",
2015-09-25 21:05:25 +00:00
"scripts": {
2020-04-13 17:30:49 +00:00
"test": "(tstest test)",
2023-07-12 08:01:45 +00:00
"build": "(tsbuild --allowimplicitany)",
2023-07-11 22:39:53 +00:00
"buildDocs": "tsdoc"
2015-09-25 21:05:25 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:15:19 +00:00
"url": "https://code.foss.global/push.rocks/smartpath.git"
2015-09-25 21:05:25 +00:00
},
"keywords": [
2024-04-13 22:53:53 +00:00
"path handling",
"file system",
"directory manipulation",
"file checks",
"path transformation",
"typescript",
"node.js development",
"URL handling",
"absolute paths",
"smart path resolution",
"programming",
"file management",
"software development",
"path utilities",
"cross-platform path management"
2015-09-25 21:05:25 +00:00
],
"author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
2015-09-25 21:05:25 +00:00
"license": "MIT",
"bugs": {
"url": "https://github.com/pushrocks/smartpath/issues"
},
2024-05-29 12:15:19 +00:00
"homepage": "https://code.foss.global/push.rocks/smartpath",
2016-03-12 07:24:05 +00:00
"devDependencies": {
2024-04-12 12:59:49 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
2024-04-20 08:13:48 +00:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23",
2024-04-12 12:59:49 +00:00
"@types/node": "^20.12.7"
2020-04-13 17:30:49 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2022-03-14 12:26:48 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-04-13 17:30:49 +00:00
]
2024-05-29 12:15:19 +00:00
}