Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 66 additions & 57 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,68 @@
{
"name": "gulp-prune",
"version": "2.0.1",
"description": "Delete files that should not be in the destination directory",
"type": "module",
"exports": "./src/index.js",
"types": "src/index.d.ts",
"scripts": {
"compile": "eslint src/*.js && tsc",
"test": "mocha src/test.js",
"prepublishOnly": "tsc"
},
"keywords": [
"gulpplugin",
"prune",
"delete",
"files"
],
"author": {
"name": "Jordan Mele",
"email": "[email protected]",
"url": "https://djmm.me/"
},
"contributors": [
{
"name": "Kurt Blackwell",
"url": "https://github.com/hh10k"
}
],
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/gulp-prune.git"
},
"bugs": {
"url": "https://github.com/userfrosting/gulp-prune/issues"
},
"license": "ISC",
"devDependencies": {
"@types/fancy-log": "^2.0.0",
"@types/node": "^20.3.3",
"@types/vinyl": "^2.0.6",
"c8": "^8.0.0",
"eslint": "^8.23.1",
"mocha": "^10.0.0",
"mock-fs": "^5.1.4",
"typescript": "^5.1.3"
},
"dependencies": {
"aggregate-error": "^4.0.1",
"ansi-colors": "^4.1.3",
"fancy-log": "^2.0.0",
"globby": "^13.1.2",
"plugin-error": "^2.0.0",
"vinyl": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
"name": "gulp-prune",
"version": "2.0.1",
"description": "Delete files that should not be in the destination directory",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"compile": "del-cli ./dist && tsc && pnpm run api-report-refresh && pnpm run api-doc-refresh",
"test": "mocha src/test.js",
"prepublishOnly": "tsc",
"stamp-version": "pnpm run compile && changelog-updater",
"api-report-refresh": "api-extractor run --local",
"api-doc-refresh": "api-extractor run && api-documenter markdown -i ./temp -o ./docs/api && git add ./docs/api/*",
"release-readiness": "npm run release-readiness:api-changes",
"release-readiness:api-changes": "npm run compile && api-extractor run"
},
"keywords": [
"gulpplugin",
"prune",
"delete",
"files"
],
"author": {
"name": "Jordan Mele",
"email": "[email protected]",
"url": "https://djmm.me/"
},
"contributors": [
{
"name": "Kurt Blackwell",
"url": "https://github.com/hh10k"
}
],
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/gulp-prune.git"
},
"bugs": {
"url": "https://github.com/userfrosting/gulp-prune/issues"
},
"license": "ISC",
"devDependencies": {
"@microsoft/api-documenter": "^7.22.21",
"@microsoft/api-extractor": "^7.36.0",
"@types/fancy-log": "^2.0.0",
"@types/node": "^20.3.3",
"@types/vinyl": "^2.0.6",
"ava": "^5.3.1",
"c8": "^8.0.0",
"changelog-updater": "^2.0.3",
"del-cli": "^5.0.0",
"eslint": "^8.23.1",
"typescript": "^5.1.3"
},
"dependencies": {
"aggregate-error": "^4.0.1",
"ansi-colors": "^4.1.3",
"fancy-log": "^2.0.0",
"globby": "^13.1.2",
"plugin-error": "^2.0.0",
"vinyl": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}
Loading