summaryrefslogtreecommitdiff
path: root/node_modules/@11ty/recursive-copy/package.json
blob: 0d7b959f069d30bad1eef2c59ef1fe7b1df3cf2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
  "name": "@11ty/recursive-copy",
  "version": "4.0.2",
  "description": "A fork of `recursive-copy`: Simple, flexible file copy utility",
  "engines": {
    "node": ">=18"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "directories": {
    "lib": "lib",
    "test": "test"
  },
  "files": [
    "index.js",
    "index.d.ts",
    "lib"
  ],
  "scripts": {
    "test": "npm run test:lint && npm run test:mocha && if-node-version '>=10' npm run test:typings",
    "test:lint": "if-node-version '>=4' eslint index.js test",
    "test:mocha": "mocha --reporter spec",
    "test:typings": "tsd && echo 'TypeScript definitions are valid'",
    "prepublishOnly": "npm run test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/11ty/recursive-copy.git"
  },
  "keywords": [
    "copy",
    "recursive",
    "file",
    "directory",
    "folder",
    "symlink",
    "fs",
    "rename",
    "filter",
    "transform",
    "glob",
    "regex",
    "regexp"
  ],
  "author": "Tim Kendrick <timkendrick@gmail.com>",
  "contributors": [
    "Zach Leatherman <zachleatherman@gmail.com> (https://zachleat.com/)"
  ],
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/11ty/recursive-copy/issues"
  },
  "homepage": "https://github.com/11ty/recursive-copy",
  "dependencies": {
    "errno": "^1.0.0",
    "junk": "^3.1.0",
    "maximatch": "^0.1.0",
    "slash": "^3.0.0"
  },
  "devDependencies": {
    "@types/node": "^14.18.63",
    "chai": "^3.5.0",
    "chai-as-promised": "^5.3.0",
    "eslint": "^2.13.1",
    "if-node-version": "^1.1.1",
    "mocha": "^2.5.3",
    "read-dir-files": "^0.1.1",
    "rewire": "^2.5.2",
    "through2": "^2.0.5",
    "tsd": "0.31.2"
  }
}