smartgulp/package.json

58 lines
1.4 KiB
JSON
Raw Normal View History

2017-04-28 23:39:14 +00:00
{
2023-07-10 00:56:11 +00:00
"name": "@push.rocks/smartgulp",
2022-06-09 17:59:22 +00:00
"version": "3.0.0",
2018-09-02 12:35:49 +00:00
"private": false,
2017-04-28 23:39:14 +00:00
"description": "lightweight gulp replacement",
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",
"url": "git+ssh://git@gitlab.com/pushrocks/smartgulp.git"
},
"keywords": [
"gulp"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartgulp/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartgulp#README",
"devDependencies": {
2022-06-09 17:59:21 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsrun": "^1.2.35",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.41",
2018-09-02 12:35:49 +00:00
"gulp-function": "^2.2.14"
2017-04-28 23:39:14 +00:00
},
"dependencies": {
2022-06-09 17:59:21 +00:00
"@pushrocks/smartevent": "^2.0.5",
"@pushrocks/smartfile": "^10.0.2",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartstream": "^2.0.3",
2019-02-20 22:54:38 +00:00
"@types/through2": "^2.0.34",
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"
]
2023-07-10 00:56:11 +00:00
}