smartgulp/package.json

65 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2017-04-28 23:39:14 +00:00
{
2023-07-10 00:56:11 +00:00
"name": "@push.rocks/smartgulp",
2024-03-10 22:31:28 +00:00
"version": "3.0.4",
2018-09-02 12:35:49 +00:00
"private": false,
2024-04-14 15:39:50 +00:00
"description": "A lightweight replacement for gulp, featuring smart stream handling and file manipulation.",
2022-06-09 17:59:21 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-04-28 23:39:14 +00:00
"scripts": {
2018-09-02 12:35:49 +00:00
"test": "(tstest test/)",
2022-06-09 17:59:21 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2017-04-28 23:39:14 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:13:27 +00:00
"url": "https://code.foss.global/push.rocks/smartgulp.git"
2017-04-28 23:39:14 +00:00
},
"keywords": [
2024-04-14 15:39:50 +00:00
"build tool",
"gulp replacement",
"stream manipulation",
"file manipulation",
"typescript",
"task runner",
"pipeline",
"development tool"
2017-04-28 23:39:14 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2023-11-25 17:12:13 +00:00
"url": "https://gitlab.com/push.rocks/smartevent/issues"
2017-04-28 23:39:14 +00:00
},
2024-05-29 12:13:27 +00:00
"homepage": "https://code.foss.global/push.rocks/smartgulp",
2017-04-28 23:39:14 +00:00
"devDependencies": {
2024-03-10 22:31:27 +00:00
"@git.zone/tsbuild": "^2.1.72",
2023-11-25 17:11:31 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-03-10 22:31:27 +00:00
"@git.zone/tstest": "^1.0.88",
2023-11-25 17:11:31 +00:00
"@push.rocks/tapbundle": "^5.0.8",
2024-03-10 22:31:27 +00:00
"@types/node": "^20.11.25",
"@push.rocks/gulp-function": "^2.2.14"
2017-04-28 23:39:14 +00:00
},
"dependencies": {
2023-11-25 17:11:31 +00:00
"@push.rocks/smartevent": "^2.0.5",
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smartpromise": "^4.0.2",
2024-03-10 22:31:27 +00:00
"@push.rocks/smartstream": "^3.0.33",
2023-11-25 17:11:31 +00:00
"@types/through2": "^2.0.41",
2022-06-09 17:59:21 +00:00
"through2": "^4.0.2"
},
"type": "module",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2024-04-14 15:39:50 +00:00
}