Files
gulp-function/package.json
T

68 lines
1.5 KiB
JSON
Raw Normal View History

2015-09-04 14:03:10 +00:00
{
2023-07-10 02:41:17 +02:00
"name": "@push.rocks/gulp-function",
2026-05-02 10:36:21 +00:00
"version": "3.0.8",
"private": false,
2024-04-14 13:35:59 +02:00
"description": "A Gulp plugin to execute functions within a Gulp task pipeline.",
"exports": {
".": "./dist_ts/index.js"
},
2024-03-10 23:29:56 +01:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
2015-09-04 14:03:10 +00:00
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
2024-03-10 23:29:56 +01:00
"buildDocs": "tsdoc"
2015-09-04 14:03:10 +00:00
},
"dependencies": {
"through2": "^4.0.2"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/gulp": "^4.0.18",
"@types/node": "^25.6.0",
"@types/through2": "^2.0.41",
"gulp": "^5.0.1"
},
2015-09-04 14:03:10 +00:00
"repository": {
"type": "git",
2024-05-29 14:11:02 +02:00
"url": "https://code.foss.global/push.rocks/gulp-function.git"
2015-09-04 14:03:10 +00:00
},
"keywords": [
2016-02-01 03:40:30 +01:00
"gulp",
2024-04-14 13:35:59 +02:00
"plugin",
"task automation",
"stream manipulation",
"async function execution",
"pipeline",
"build tool",
"JavaScript",
"TypeScript"
2015-09-04 14:03:10 +00:00
],
"bugs": {
"url": "https://code.foss.global/push.rocks/gulp-function/issues"
2015-10-25 22:45:49 +01:00
},
2024-05-29 14:11:02 +02:00
"homepage": "https://code.foss.global/push.rocks/gulp-function",
2020-01-18 12:19:27 +00:00
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2024-03-10 23:29:56 +01:00
"dist_*/**/*",
"dist_ts/**/*",
2020-01-18 12:19:27 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2020-01-18 12:19:27 +00:00
"npmextra.json",
"readme.md"
2024-03-10 23:29:56 +01:00
],
"browserslist": [
"last 1 chrome versions"
2020-01-18 12:19:27 +00:00
]
}