forked from klaascuvelier/gulp-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.6 KB
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
{
"name": "@fomantic/gulp-copy",
"version": "5.1.0",
"description": "Plugin copying files to a new destination and using that destination for other actions",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/fomantic/gulp-copy"
},
"scripts": {
"lint": "eslint ./lib -c ./.eslintrc",
"test": "ava test/spec/gulp-copy.spec.js",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css,less,md,json}'",
"prettier-check": "prettier --list-different '**/*.{js,jsx,ts,tsx,css,less,md,json}'"
},
"keywords": [
"gulpplugin",
"copy",
"gulp"
],
"author": {
"name": "Klaas Cuvelier",
"email": "cuvelierklaas@gmail.com",
"url": "https://klaascuvelier.io"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"bugs": {
"url": "https://github.com/klaascuvelier/gulp-copy/issues"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-gulp": "^5.0.1",
"ava": "^5.3.1",
"prettier": "^3.9.5"
},
"dependencies": {
"gulp": "^5.0.0",
"plugin-error": "^2.0.0",
"through2": "^4.0.2"
},
"resolutions": {
"ajv": "^6.14.0",
"braces": "^3.0.3",
"cross-spawn": "^7.0.5",
"flatted": "^3.4.2",
"js-yaml": "^4.2.0",
"micromatch": "^4.0.8",
"minimatch": "^9.0.7",
"semver": "^6.3.1",
"picomatch": "^4.0.4",
"word-wrap": "^1.2.4"
},
"homepage": "https://github.com/klaascuvelier/gulp-copy"
}