Files
smartpath/package.json

64 lines
1.5 KiB
JSON
Raw Normal View History

2015-09-25 23:05:25 +02:00
{
2023-07-10 10:17:16 +02:00
"name": "@push.rocks/smartpath",
2024-04-20 10:13:49 +02:00
"version": "5.0.15",
2018-07-21 23:26:11 +02:00
"private": false,
2024-04-14 00:53:53 +02: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 13:26:48 +01:00
"type": "module",
2015-09-25 23:05:25 +02:00
"scripts": {
2020-04-13 17:30:49 +00:00
"test": "(tstest test)",
2023-07-12 10:01:45 +02:00
"build": "(tsbuild --allowimplicitany)",
2023-07-12 00:39:53 +02:00
"buildDocs": "tsdoc"
2015-09-25 23:05:25 +02:00
},
"repository": {
"type": "git",
"url": "https://github.com/pushrocks/smartpath.git"
},
"keywords": [
2024-04-14 00:53:53 +02: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 23:05:25 +02:00
],
"author": "Lossless GmbH <office@lossless.com> (https://lossless.com)",
2015-09-25 23:05:25 +02:00
"license": "MIT",
"bugs": {
"url": "https://github.com/pushrocks/smartpath/issues"
},
"homepage": "https://github.com/pushrocks/smartpath",
2016-03-12 08:24:05 +01:00
"devDependencies": {
2024-04-12 14:59:49 +02:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
2024-04-20 10:13:48 +02:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23",
2024-04-12 14:59:49 +02: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 13:26:48 +01:00
],
"browserslist": [
"last 1 chrome versions"
2020-04-13 17:30:49 +00:00
]
2024-04-14 00:53:54 +02:00
}