Files
smartgulp/package.json
T

69 lines
1.6 KiB
JSON
Raw Normal View History

2017-04-29 01:39:14 +02:00
{
2023-07-10 02:56:11 +02:00
"name": "@push.rocks/smartgulp",
2024-03-10 23:31:28 +01:00
"version": "3.0.4",
2018-09-02 14:35:49 +02:00
"private": false,
2024-04-14 17:39:50 +02:00
"description": "A lightweight replacement for gulp, featuring smart stream handling and file manipulation.",
"exports": {
".": "./dist_ts/index.js"
},
2022-06-09 19:59:21 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-04-29 01:39:14 +02:00
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
2022-06-09 19:59:21 +02:00
"buildDocs": "tsdoc"
2017-04-29 01:39:14 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:13:27 +02:00
"url": "https://code.foss.global/push.rocks/smartgulp.git"
2017-04-29 01:39:14 +02:00
},
"keywords": [
2024-04-14 17:39:50 +02:00
"build tool",
"gulp replacement",
"stream manipulation",
"file manipulation",
"typescript",
"task runner",
"pipeline",
"development tool"
2017-04-29 01:39:14 +02:00
],
"author": "Task Venture Capital GmbH <hello@task.vc>",
2017-04-29 01:39:14 +02:00
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartgulp/issues"
2017-04-29 01:39:14 +02:00
},
2024-05-29 14:13:27 +02:00
"homepage": "https://code.foss.global/push.rocks/smartgulp",
2017-04-29 01:39:14 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/gulp-function": "^3.0.7",
"@types/node": "^25.6.0"
2017-04-29 01:39:14 +02:00
},
"dependencies": {
2023-11-25 18:11:31 +01:00
"@push.rocks/smartevent": "^2.0.5",
"@push.rocks/smartfile": "^13.1.3",
"@push.rocks/smartpromise": "^4.2.4",
"@push.rocks/smartstream": "^3.4.2",
"minimatch": "^10.2.5"
2022-06-09 19:59:21 +02:00
},
"type": "module",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2022-06-09 19:59:21 +02:00
"npmextra.json",
"readme.md"
]
}