package.json
{
"name": "stream-copy-dir",
"version": "1.0.0",
"description": "Streaming copy of directory to destination - no globs and no recursion. In addition can pass a 'plugin' function to modify the contents of each file - perfect place for template engines.",
"repository": "tunnckoCore/stream-copy-dir",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "standard --verbose",
"pretest": "npm run lint",
"test": "npm run coverage",
"posttest": "npm run lint:coverage",
"coverage": "nyc node test.js",
"lint:coverage": "nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"precommit": "git add --all",
"commit": "git-cz"
},
"dependencies": {
"create-readdir-stream": "^1.0.0",
"lazy-cache": "^2.0.1",
"through2": "^2.0.1",
"write-file": "^1.0.0"
},
"devDependencies": {
"commitizen": "^2.8.6",
"coveralls": "^2.11.14",
"cz-conventional-changelog": "^1.2.0",
"mkdirp": "^0.5.1",
"mukla": "^0.4.4",
"nyc": "^8.3.2",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"standard": "^8.5.0",
"standard-version": "^3.0.0"
},
"files": [
"index.js",
"utils.js"
],
"keywords": [
"copy",
"dest",
"destination",
"dir",
"directory",
"dist",
"fast",
"file",
"files",
"noglobs",
"norecurse",
"norecursion",
"plugin",
"plugins",
"pure",
"small",
"stream",
"streaming",
"template",
"templates",
"use"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"verb": {
"run": true,
"toc": true,
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"create-readdir-stream",
"callback2stream",
"always-done",
"try-catch-core",
"promise2stream",
"minibase"
]
},
"reflinks": [
"always-done",
"async-done",
"base",
"dezalgo",
"once",
"through2",
"use",
"vinyl",
"create-readdir-stream",
"write-file"
],
"lint": {
"reflinks": true
}
}
}