smartfile/package.json

70 lines
1.8 KiB
JSON
Raw Normal View History

2015-11-03 18:57:29 +00:00
{
"name": "@pushrocks/smartfile",
"private": false,
2023-07-08 14:24:53 +00:00
"version": "10.0.26",
2015-11-03 18:57:29 +00:00
"description": "offers smart ways to work with files in nodejs",
2020-03-15 19:08:41 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-06-07 13:43:28 +00:00
"type": "module",
2015-11-03 18:57:29 +00:00
"scripts": {
"test": "(tstest test/)",
2022-07-24 21:11:41 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2015-11-03 18:57:29 +00:00
},
"repository": {
"type": "git",
2016-06-23 17:02:34 +00:00
"url": "https://gitlab.com/pushrocks/smartfile.git"
2015-11-03 18:57:29 +00:00
},
"keywords": [
"filesystem",
"json"
],
"author": "Lossless GmbH <hello@lossless.com> (https://lossless.com)",
2015-11-03 18:57:29 +00:00
"license": "MIT",
"bugs": {
2016-06-23 17:02:34 +00:00
"url": "https://gitlab.com/pushrocks/smartfile/issues"
2015-11-03 18:57:29 +00:00
},
2016-06-23 17:02:34 +00:00
"homepage": "https://gitlab.com/pushrocks/smartfile",
2015-11-03 18:57:29 +00:00
"dependencies": {
2023-06-23 16:08:15 +00:00
"@pushrocks/lik": "^6.0.2",
"@pushrocks/smartdelay": "^3.0.1",
2020-10-05 16:20:57 +00:00
"@pushrocks/smartfile-interfaces": "^1.0.7",
2023-06-23 16:08:15 +00:00
"@pushrocks/smarthash": "^3.0.2",
"@pushrocks/smartjson": "^5.0.6",
2021-11-30 15:34:35 +00:00
"@pushrocks/smartmime": "^1.0.5",
2022-06-07 13:43:28 +00:00
"@pushrocks/smartpath": "^5.0.5",
2023-06-23 16:08:15 +00:00
"@pushrocks/smartpromise": "^4.0.2",
"@pushrocks/smartrequest": "^2.0.15",
2022-06-09 17:26:59 +00:00
"@pushrocks/smartstream": "^2.0.3",
2022-06-07 13:11:21 +00:00
"@pushrocks/streamfunction": "^4.0.4",
2023-06-23 16:08:15 +00:00
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
2021-11-30 15:34:35 +00:00
"@types/js-yaml": "^4.0.5",
2023-06-23 16:08:15 +00:00
"fs-extra": "^11.1.1",
2023-07-08 14:24:53 +00:00
"glob": "^10.3.2",
2021-11-30 15:34:35 +00:00
"js-yaml": "^4.1.0"
2015-11-03 18:57:29 +00:00
},
"devDependencies": {
2023-06-23 16:08:15 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
2023-01-09 14:32:37 +00:00
"@gitzone/tstest": "^1.0.74",
2023-06-23 16:08:15 +00:00
"@pushrocks/tapbundle": "^5.0.8",
2023-07-08 14:24:53 +00:00
"@types/node": "^20.4.1"
2019-06-26 19:17:58 +00:00
},
"files": [
2020-02-07 21:00:04 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-03-15 18:58:46 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-07 21:00:04 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-06-26 19:17:58 +00:00
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
2019-06-26 19:17:58 +00:00
]
2023-06-23 16:43:50 +00:00
}